We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00776d9 commit e572940Copy full SHA for e572940
1 file changed
python/Scripts/mxformat.py
@@ -20,7 +20,7 @@ def is_well_formed(xml_string):
20
def main():
21
parser = argparse.ArgumentParser(description="Reformat a folder of MaterialX documents in place.")
22
parser.add_argument('-y', '--yes', dest='yes', action="store_true", help="Proceed without asking for confirmation from the user.")
23
- parser.add_argument('-u' '--upgrade', dest='upgrade', action="store_true", help='Upgrade documents to the latest version of the standard.')
+ parser.add_argument('-u', '--upgrade', dest='upgrade', action="store_true", help='Upgrade documents to the latest version of the standard.')
24
parser.add_argument('-v', '--validate', dest='validate', action="store_true", help='Perform MaterialX validation on documents after reformatting.')
25
parser.add_argument('-x', '--xml_syntax', dest='xml_syntax', action="store_true", help='Check XML syntax after reformatting.')
26
parser.add_argument(dest="inputFolder", help="An input folder to scan for MaterialX documents.")
0 commit comments