Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
Add comment to Removals tag to make it easier to add items to remove
Browse files Browse the repository at this point in the history
  • Loading branch information
Graham R Pugh committed Feb 11, 2020
1 parent 3c62e48 commit ba98af3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions spruce.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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 "
Expand Down

0 comments on commit ba98af3

Please sign in to comment.