From ba98af3bb8060c77c68f8165fd739421fa16288a Mon Sep 17 00:00:00 2001 From: Graham R Pugh Date: Tue, 11 Feb 2020 22:01:27 +0100 Subject: [PATCH] Add comment to Removals tag to make it easier to add items to remove --- spruce.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spruce.py b/spruce.py index 3de31b1..a838c39 100755 --- a/spruce.py +++ b/spruce.py @@ -1780,7 +1780,8 @@ def add_output_metadata(root): spruce_version.text = __version__ python_jss_version = ET.SubElement(root, "python-jssVersion") python_jss_version.text = jss.__version__ - ET.SubElement(root, "Removals") + removals = ET.SubElement(root, "Removals") + removals.insert(0, ET.Comment("Move items to be removed here")) def add_report_output(root, report): @@ -1867,7 +1868,7 @@ def build_argparser(): phelp = ("Include a list of all objects and used objects in addition to " "unused objects in reports.") parser.add_argument("-v", "--verbose", help=phelp, action="store_true") - phelp = ("Show emoji in output and reports.") + phelp = ("Show cute emoji in output and reports.") parser.add_argument("--kawaii", help=phelp, action="store_true") phelp = ("For computer and mobile device reports, the number of " "days since the last check-in to consider device "