commit | 721dcbd23da4f9679ddf58119c478922bf420a1e | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed Apr 08 07:32:57 2020 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed Apr 08 07:33:08 2020 -0500 |
tree | e56754b2fbfd445ee6d913a4afe1c6b5a98fd994 | |
parent | 9eae8443ebde785d18035de1a6dfcefeae466d31 [diff] [blame] |
python2 to python3 conversion Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Ia0e00fdd8ae8d4f3c657384be9224cfc9911285f
diff --git a/patchxml.py b/patchxml.py index 0deb5d9..4db64de 100755 --- a/patchxml.py +++ b/patchxml.py
@@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ This script applies patches to an XML file. @@ -219,7 +219,7 @@ patch_type) except Exception as e: - print e + print(e) errors.append(e) tree.write(args.output_xml)