diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2020-03-25 10:12:54 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-04-07 16:43:36 -0400 |
commit | 3803dd215f760fd721e6f051b10dc534b7e62bef (patch) | |
tree | 90e40ef5d1d4cfa4cd50c91ba90f63a370d60a7b /bin | |
parent | 71428ba1bc664feedbb41ea3d4a5b44a5a096dac (diff) | |
download | sos-3803dd215f760fd721e6f051b10dc534b7e62bef.tar.gz |
[report] Move sosreport.py into report/__init__.py
Moves the legacy sosreport.py into sos/report/__init__.py as part of the
reorganization for 4.0
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/sosreport | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sosreport b/bin/sosreport index 43d58acb..3c2b5e03 100755 --- a/bin/sosreport +++ b/bin/sosreport @@ -15,7 +15,7 @@ try: # allow running from the git checkout, even though as of 4.0 we are moving # binaries into a bin/ top-level directory. sys.path.append(os.getcwd()) - from sos.report.sosreport import main + from sos.report import main except KeyboardInterrupt: raise SystemExit() |