diff options
author | Rob Austein <sra@hactrn.net> | 2010-10-04 22:05:46 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-10-04 22:05:46 +0000 |
commit | d0ce54592006f5891f0086d0a95494ee563624a2 (patch) | |
tree | 1c52afc3486f1efca8e78066ae3dc3631488f833 /scripts/arin-to-csv.py | |
parent | f1c112eff031759d94f283cd08a311be68e715a0 (diff) |
Doh, forgot to close csv_writer object
svn path=/scripts/arin-to-csv.py; revision=3458
Diffstat (limited to 'scripts/arin-to-csv.py')
-rw-r--r-- | scripts/arin-to-csv.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/arin-to-csv.py b/scripts/arin-to-csv.py index fc97fd5e..98d99f9f 100644 --- a/scripts/arin-to-csv.py +++ b/scripts/arin-to-csv.py @@ -83,3 +83,6 @@ for event, node in lxml.etree.iterparse(sys.stdin): node.clear() while node.getprevious() is not None: del node.getparent()[0] + +asns.close() +prefixes.close() |