Skip to content
Permalink
Browse files
properly fix commandline parsing: got that slice backwards
  • Loading branch information
anarcat committed Mar 7, 2012
1 parent 633b603 commit 687fc6ae5b2fe5df9423eb044888659c10bc69f6
Showing 1 changed file with 1 addition and 1 deletion.
@@ -82,7 +82,7 @@ def fab_uninstall_aegir():

def main():
assert len(sys.argv) > 1, "No .deb provided on the commandline"
for deb in sys.argv[:1]:
for deb in sys.argv[1:]:
assert(os.path.exists(deb)), "provided file doesn't exist: " + deb

# Run some tests

0 comments on commit 687fc6a

Please sign in to comment.