removed opening of unused _tmp file

This commit is contained in:
Philip Eisenlohr 2012-11-27 17:59:56 +00:00
parent f824445089
commit 05507a6240
1 changed files with 0 additions and 2 deletions

View File

@ -116,7 +116,6 @@ files = []
if filenames == []:
files.append({'name':'STDIN',
'input':sys.stdin,
'output':sys.stdout,
'croak':sys.stderr,
})
else:
@ -124,7 +123,6 @@ else:
if os.path.exists(name):
files.append({'name':name,
'input':open(name),
'output':open(name+'_tmp','w'),
'croak':sys.stdout,
})