beremiz

Fixed argument parsing error

2012-05-21, Edouard Tisserant
944e58c00ca5
Parents d9f4ecee761d
Children 7b421e080636
Fixed argument parsing error
  • +1 -1
    Beremiz.py
  • --- a/Beremiz.py Sun May 20 22:44:09 2012 +0200
    +++ b/Beremiz.py Mon May 21 02:01:51 2012 +0200
    @@ -45,7 +45,7 @@
    print "\n %s [Projectpath] [Buildpath]\n"%sys.argv[0]
    try:
    - opts, args = getopt.getopt(sys.argv[1:], "hue:", ["help", "updatecheck=", "extend="])
    + opts, args = getopt.getopt(sys.argv[1:], "hu:e:", ["help", "updatecheck=", "extend="])
    except getopt.GetoptError:
    # print help information and exit:
    usage()