Skip to content

Commit e572940

Browse files
committed
Fix command syntax error.
1 parent 00776d9 commit e572940

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/Scripts/mxformat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def is_well_formed(xml_string):
2020
def main():
2121
parser = argparse.ArgumentParser(description="Reformat a folder of MaterialX documents in place.")
2222
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.')
23+
parser.add_argument('-u', '--upgrade', dest='upgrade', action="store_true", help='Upgrade documents to the latest version of the standard.')
2424
parser.add_argument('-v', '--validate', dest='validate', action="store_true", help='Perform MaterialX validation on documents after reformatting.')
2525
parser.add_argument('-x', '--xml_syntax', dest='xml_syntax', action="store_true", help='Check XML syntax after reformatting.')
2626
parser.add_argument(dest="inputFolder", help="An input folder to scan for MaterialX documents.")

0 commit comments

Comments
 (0)