aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJake Hunsaker <jhunsake@redhat.com>2020-03-27 11:45:53 -0400
committerJake Hunsaker <jhunsake@redhat.com>2020-04-08 09:27:31 -0400
commite187103f7d414c153b8e5e523cc654f793348d39 (patch)
treeda1e0f678437d7ae74fe7267937a75d6babf752d
parent2b58a44efbe87623cb1fa0f2453d7f9e89b1840c (diff)
downloadsos-e187103f7d414c153b8e5e523cc654f793348d39.tar.gz
[reporting] Move reporting under sos/report
Moves the HTML/JSON reporting bits under sos/report. Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r--sos/report/__init__.py2
-rw-r--r--sos/report/reporting.py (renamed from sos/reporting.py)0
-rw-r--r--tests/report_tests.py2
3 files changed, 2 insertions, 2 deletions
diff --git a/sos/report/__init__.py b/sos/report/__init__.py
index 156096e2..4b19eb24 100644
--- a/sos/report/__init__.py
+++ b/sos/report/__init__.py
@@ -29,7 +29,7 @@ from sos import __version__
from sos.component import SoSComponent
import sos.policies
from sos.archive import TarFileArchive
-from sos.reporting import (Report, Section, Command, CopiedFile, CreatedFile,
+from sos.report.reporting import (Report, Section, Command, CopiedFile, CreatedFile,
Alert, Note, PlainTextReport, JSONReport,
HTMLReport)
diff --git a/sos/reporting.py b/sos/report/reporting.py
index e6fb17e9..e6fb17e9 100644
--- a/sos/reporting.py
+++ b/sos/report/reporting.py
diff --git a/tests/report_tests.py b/tests/report_tests.py
index e4304746..3418f16e 100644
--- a/tests/report_tests.py
+++ b/tests/report_tests.py
@@ -13,7 +13,7 @@ try:
except ImportError:
import simplejson as json
-from sos.reporting import (Report, Section, Command, CopiedFile, CreatedFile,
+from sos.report.reporting import (Report, Section, Command, CopiedFile, CreatedFile,
Alert, PlainTextReport)