[Python-checkins] r73974 - sandbox/trunk/2to3/lib2to3/main.py
benjamin.peterson
python-checkins at python.org
Sun Jul 12 05:00:29 CEST 2009
Author: benjamin.peterson
Date: Sun Jul 12 05:00:29 2009
New Revision: 73974
Log:
add space
Modified:
sandbox/trunk/2to3/lib2to3/main.py
Modified: sandbox/trunk/2to3/lib2to3/main.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/main.py (original)
+++ sandbox/trunk/2to3/lib2to3/main.py Sun Jul 12 05:00:29 2009
@@ -115,13 +115,13 @@
if not args:
return 0
if not args:
- print >>sys.stderr, "At least one file or directory argument required."
- print >>sys.stderr, "Use --help to show usage."
+ print >> sys.stderr, "At least one file or directory argument required."
+ print >> sys.stderr, "Use --help to show usage."
return 2
if "-" in args:
refactor_stdin = True
if options.write:
- print >>sys.stderr, "Can't write to stdin."
+ print >> sys.stderr, "Can't write to stdin."
return 2
# Set up logging handler
More information about the Python-checkins
mailing list