Commit 5172bdae authored by Claude Paroz's avatar Claude Paroz
Browse files

Updated manage_translations script

parent 384ddbec
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -168,14 +168,11 @@ if __name__ == "__main__":
    RUNABLE_SCRIPTS = ('update_catalogs', 'lang_stats', 'fetch')

    parser = ArgumentParser()
    parser.add_argument('cmd', nargs=1)
    parser.add_argument('cmd', nargs=1, choices=RUNABLE_SCRIPTS)
    parser.add_argument("-r", "--resources", action='append',
        help="limit operation to the specified resources")
    parser.add_argument("-l", "--languages", action='append',
        help="limit operation to the specified languages")
    options = parser.parse_args()

    if options.cmd[0] in RUNABLE_SCRIPTS:
    eval(options.cmd[0])(options.resources, options.languages)
    else:
        print("Available commands are: %s" % ", ".join(RUNABLE_SCRIPTS))