diff options
author | Per Øyvind Karlsen <proyvind@moondrake.org> | 2016-07-22 17:09:31 +0200 |
---|---|---|
committer | Per Øyvind Karlsen <proyvind@moondrake.org> | 2016-07-22 17:09:31 +0200 |
commit | cafc90364b7103ec28f9a42c9ce6f38389f91461 (patch) | |
tree | 236fa7eceb62f39ec4cfa3e411b3c5a18c81b551 /MgaRepo/commands | |
parent | 16c00be1b1b0805057fc799df3d0b6cb5b48699a (diff) | |
download | mgarepo-cafc90364b7103ec28f9a42c9ce6f38389f91461.tar mgarepo-cafc90364b7103ec28f9a42c9ce6f38389f91461.tar.gz mgarepo-cafc90364b7103ec28f9a42c9ce6f38389f91461.tar.bz2 mgarepo-cafc90364b7103ec28f9a42c9ce6f38389f91461.tar.xz mgarepo-cafc90364b7103ec28f9a42c9ce6f38389f91461.zip |
oops, add missing ':'
Diffstat (limited to 'MgaRepo/commands')
-rw-r--r-- | MgaRepo/commands/github.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MgaRepo/commands/github.py b/MgaRepo/commands/github.py index 14a34c3..dece050 100644 --- a/MgaRepo/commands/github.py +++ b/MgaRepo/commands/github.py @@ -32,7 +32,7 @@ def github_delete(pkg, **kwargs): def parse_options(): parser = OptionParser(help=HELP) opts, args = parser.parse_args() - if len(args) < 1 + if len(args) < 1: raise Error("invalid arguments") opts.func = globals().get("github_"+args[0], None) if args[0] == "import": |