Skip to content

Commit 6c5b5ad

Browse files
committed
Actually call close().
1 parent 7f552c0 commit 6c5b5ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roundup/test/memorydb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def create(journaltag, create=True, debug=False, prefix=default_prefix):
6262
adminpw=password.Password('sekrit'))
6363
fd = open(initial_data)
6464
exec(compile(fd.read(), initial_data, 'exec'), vars)
65-
fd.close
65+
fd.close()
6666

6767
# load standard detectors
6868
dirname = os.path.join(prefix, 'detectors')

0 commit comments

Comments
 (0)