diff options
author | Determinant <[email protected]> | 2018-08-20 12:20:16 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-08-20 12:20:16 -0400 |
commit | f4eb65192d1ff39dd40c15827c012d5a55045c43 (patch) | |
tree | 6d84f0c928851d7f8f2b8dd92dd1490e14899ea3 | |
parent | 559465ecfa891da2b547c0e144e981a01ff4af33 (diff) |
...
-rw-r--r-- | scripts/gen_conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen_conf.py b/scripts/gen_conf.py index 7b06826..391e0d6 100644 --- a/scripts/gen_conf.py +++ b/scripts/gen_conf.py @@ -20,7 +20,7 @@ if __name__ == "__main__": if args.ips is None: ips = ['127.0.0.1'] else: - ips = [l.strip() for l in open(args.iplist, 'r').readlines()] + ips = [l.strip() for l in open(args.ips, 'r').readlines()] prefix = args.prefix iter = args.iter base_pport = args.pport |