Remove unused --encode option

This commit is contained in:
sneakypete81 2013-05-02 23:34:14 +01:00
parent 30a843d5aa
commit 060db87b84
2 changed files with 0 additions and 2 deletions

View file

@ -70,7 +70,6 @@ These are the options you can pass to the shell program.
-F params # i.e. -F 'title=my title' -F 'tags=mytag1,mytag1'
-p # pretty print the json
-v # verbose output
--encode # base 64 encode the photo
Now you can run commands to the OpenPhoto API from your shell!

View file

@ -63,7 +63,6 @@ def main(args=sys.argv[1:]):
help="pretty print the json")
parser.add_option('-v', action="store_true", dest="verbose", default=False,
help="verbose output")
parser.add_option('--encode', action="store_true", dest="encode", default=False)
options, args = parser.parse_args(args)