diff options
Diffstat (limited to 'repo')
-rwxr-xr-x | repo | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,7 +28,7 @@ if __name__ == '__main__': | |||
28 | del magic | 28 | del magic |
29 | 29 | ||
30 | # increment this whenever we make important changes to this script | 30 | # increment this whenever we make important changes to this script |
31 | VERSION = (1, 13) | 31 | VERSION = (1, 14) |
32 | 32 | ||
33 | # increment this if the MAINTAINER_KEYS block is modified | 33 | # increment this if the MAINTAINER_KEYS block is modified |
34 | KEYRING_VERSION = (1,0) | 34 | KEYRING_VERSION = (1,0) |
@@ -149,7 +149,7 @@ def _Init(args): | |||
149 | """Installs repo by cloning it over the network. | 149 | """Installs repo by cloning it over the network. |
150 | """ | 150 | """ |
151 | opt, args = init_optparse.parse_args(args) | 151 | opt, args = init_optparse.parse_args(args) |
152 | if args or not opt.manifest_url: | 152 | if args: |
153 | init_optparse.print_usage() | 153 | init_optparse.print_usage() |
154 | sys.exit(1) | 154 | sys.exit(1) |
155 | 155 | ||