diff options
author | Rob Austein <sra@hactrn.net> | 2016-04-14 02:34:30 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-04-14 02:34:30 +0000 |
commit | 713647cc0fc4fb26055b114a3149f69ba05032f5 (patch) | |
tree | 7733f6365ac090e3e6c22cae7a98232bfb6fab37 /rpki | |
parent | c8d26417c6f66ce3bf5389f046cc8dd3aa5bf64e (diff) |
Fix bug introduced merging load_roa_requests patch from trunk, sigh.
svn path=/branches/tk705/; revision=6361
Diffstat (limited to 'rpki')
-rw-r--r-- | rpki/irdb/zookeeper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpki/irdb/zookeeper.py b/rpki/irdb/zookeeper.py index e4a04869..5bfed98b 100644 --- a/rpki/irdb/zookeeper.py +++ b/rpki/irdb/zookeeper.py @@ -1046,7 +1046,7 @@ class Zookeeper(object): grouped = {} # format: p/n-m asn group - for pnm, asn, group in csv_reader(filename, columns = 3, min_columns = 2): + for pnm, asn, group in csv_reader(csv_file, columns = 3, min_columns = 2): key = (asn, group or pnm) if key not in grouped: grouped[key] = [] |