- standardize on patchlist_file
This commit is contained in:
ccooper%deadsquid.com 2008-01-04 17:55:17 +00:00
Родитель bea6c07ff0
Коммит 77d1713e32
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -362,16 +362,16 @@ def main(argv):
usage()
sys.exit()
elif opt in ("-f", "--patchlist_file"):
patchlist_filename = arg
patchlist_file = arg
except getopt.GetoptError:
usage()
sys.exit(2)
if not patchlist_filename:
if not patchlist_file:
usage()
sys.exit(2)
create_partial_patches(patchlist_filename)
create_partial_patches(patchlist_file)
if __name__ == "__main__":
main(sys.argv[1:])