mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-10 13:57:08 +01:00
Fix print statement errors
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75499 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -925,10 +925,11 @@ def main(args=None):
|
||||
|
||||
|
||||
except IOError, e:
|
||||
print(>>sys.stderr, "%s." % str(e))
|
||||
sys.stderr.write("%s.\n" % str(e))
|
||||
else:
|
||||
if outputFilename != "-":
|
||||
print(>>sys.stderr, "Resources written to %s." % outputFilename)
|
||||
sys.stderr.write("Resources written to %s.\n" % outputFilename)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main(sys.argv[1:])
|
||||
|
||||
Reference in New Issue
Block a user