Skip to content

Commit

Permalink
add 'check_video' method (Bengt Sjölén)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkm committed Mar 7, 2010
1 parent f6c7e9d commit 0bf6844
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/vimeo-query.py
Expand Up @@ -121,12 +121,14 @@ def main(argv):


(options, args) = parser.parse_args(argv[1:]) (options, args) = parser.parse_args(argv[1:])



def check_user(): def check_user():
return options.user != None return options.user != None


def check_channel(): def check_channel():
return options.channel != None return options.channel != None

def check_video():
return options.video != None


def check_album(): def check_album():
return options.album != None return options.album != None
Expand Down

0 comments on commit 0bf6844

Please sign in to comment.