sys.stderr.write() instead of print >> sys.stderr, "..."
This commit is contained in:
parent
2590eefc96
commit
f74d9fcdf1
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ if __name__ == '__main__':
|
|||
import sys
|
||||
|
||||
if len(sys.argv) < 2:
|
||||
print >> sys.stderr, "Usage: python -m gerber <filename> <filename>..."
|
||||
sys.stderr.write("Usage: python -m gerber <filename> <filename>...\n")
|
||||
sys.exit(1)
|
||||
|
||||
ctx = GerberSvgContext()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue