From 5c661492d88544b0da0860854a16edbf3f984b8d Mon Sep 17 00:00:00 2001 From: Kevin Murray Date: Mon, 17 Aug 2015 20:37:40 +1000 Subject: [PATCH] be consistent with variable names --- scripts/load-into-countgraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/load-into-countgraph.py b/scripts/load-into-countgraph.py index 1d298fbb22..f926dd7843 100755 --- a/scripts/load-into-countgraph.py +++ b/scripts/load-into-countgraph.py @@ -97,7 +97,7 @@ def main(): repr(filenames), file=sys.stderr) # clobber the '.info' file now, as we always open in append mode below - with open(info_filename, 'w') as info_fh: + with open(info_filename, 'w') as info_fp: print('khmer version:', khmer.__version__, file=info_fh) print('making countgraph', file=sys.stderr)