aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJake Hunsaker <jhunsake@redhat.com>2020-03-25 10:12:54 -0400
committerJake Hunsaker <jhunsake@redhat.com>2020-04-07 16:43:36 -0400
commit3803dd215f760fd721e6f051b10dc534b7e62bef (patch)
tree90e40ef5d1d4cfa4cd50c91ba90f63a370d60a7b /bin
parent71428ba1bc664feedbb41ea3d4a5b44a5a096dac (diff)
downloadsos-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-xbin/sosreport2
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()