diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-04-19 21:38:28 -0500 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-04-19 21:38:28 -0500 |
commit | b8a883720066e4f91b162ea91719f9a0f15958ed (patch) | |
tree | 4aaf438b6ecbfab506bce9ac5e08249633de686f /clean_repo.py | |
parent | a79cd8ac55d222e182bde411b94bb19cb74fa728 (diff) |
Another fix
Diffstat (limited to 'clean_repo.py')
-rwxr-xr-x | clean_repo.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/clean_repo.py b/clean_repo.py index bc401b5..6f3d632 100755 --- a/clean_repo.py +++ b/clean_repo.py @@ -80,11 +80,9 @@ if __name__ == "__main__": args=parser.parse_args() - if not args.directory and not args.database: - parser.print_help() - elif not args.pending_file or not args.whitelist_file \ - and args.database: + if args.database and not (args.pending_file and args.whitelist_file): parser.print_help() + exit(1) blacklisted=listado(args.blacklist_file) |