Skip to content

Commit

Permalink
Move tmdb3.py script into location used by metadata libraries.
Browse files Browse the repository at this point in the history
This script is currently usable, but is being placed here for staging
purposes only.  The version output has been disabled, preventing its use
in the UI selection dialogs.
  • Loading branch information
wagnerrp committed Mar 25, 2012
1 parent d3c219a commit 1caa3a3
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -118,8 +118,8 @@ def main():

parser = OptionParser()

parser.add_option('-v', "--version", action="store_true", default=False,
dest="version", help="Display version and author")
# parser.add_option('-v', "--version", action="store_true", default=False,
# dest="version", help="Display version and author")
parser.add_option('-M', "--movielist", action="store_true", default=False,
dest="movielist", help="Get Movies matching search.")
parser.add_option('-D', "--moviedata", action="store_true", default=False,
Expand All @@ -131,8 +131,8 @@ def main():

opts, args = parser.parse_args()

if opts.version:
buildVersion()
# if opts.version:
# buildVersion()

if (len(args) != 1) or (args[0] == ''):
sys.stdout.write('ERROR: tmdb3.py requires exactly one non-empty argument')
Expand Down

0 comments on commit 1caa3a3

Please sign in to comment.