Fix for 'full' parameter
Change-Id: Iffdd19e7bd6b0058fefffe24706c4d94d3117665
Related-PROD: PROD-28199
diff --git a/cfg_checker/cfg_check.py b/cfg_checker/cfg_check.py
index 678724e..6b64804 100644
--- a/cfg_checker/cfg_check.py
+++ b/cfg_checker/cfg_check.py
@@ -83,7 +83,7 @@
)
pkg_report_parser.add_argument(
'--full',
- metavar='packages_html_filename',
+ action="store_true", default=False,
help="HTML report will have all of the packages, not just errors"
)
pkg_report_parser.add_argument(
diff --git a/scripts/sniffer.py b/scripts/sniffer.py
index 246dcd4..a9f9901 100644
--- a/scripts/sniffer.py
+++ b/scripts/sniffer.py
@@ -1,4 +1,4 @@
# This will be the basic sniffer script
# Its purpose is to sniff for a specific packet and return its headers-n-data
-return
\ No newline at end of file
+pass
\ No newline at end of file