From 1f0cd357a0ef852232e678308690b55df709fa66 Mon Sep 17 00:00:00 2001 From: prcrst Date: Thu, 16 Dec 2010 11:09:23 +0100 Subject: [PATCH] Corrected help text on options --- longneck.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/longneck.py b/longneck.py index c12a9d1..7d012bd 100755 --- a/longneck.py +++ b/longneck.py @@ -2,7 +2,6 @@ import pygame from optparse import OptionParser -from pprint import pprint import os.path parser = OptionParser() @@ -22,12 +21,12 @@ parser.add_option("-y", "--height", parser.add_option("-w", "--scalewidth", dest="scalewidth", type='int', - help="final width of the new image in pixels (minimal: 370)") + help="final width of the new image in pixels") parser.add_option("-g", "--scaleheight", dest="scaleheight", type='int', - help="final height of the new image in pixels (minimal: 370)") + help="final height of the new image in pixels") parser.add_option("-c", "--scale", dest="scale", @@ -37,7 +36,7 @@ parser.add_option("-c", "--scale", parser.add_option("-f", "--file", dest="file", default="longneck.png", - help="write to this file") + help="write to this file, default: longneck.png") (options, args) = parser.parse_args() -- 2.11.4.GIT