Browse Source

Tweak Windows temp.close() comment line.

pull/309/head
William Ting 10 years ago
parent
commit
23be6ab233
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      bin/autojump_data.py

+ 1
- 2
bin/autojump_data.py View File

@ -119,9 +119,8 @@ def save(config, data):
# atomically save by writing to temporary file and moving to destination # atomically save by writing to temporary file and moving to destination
try: try:
# write to temp file
temp = NamedTemporaryFile(delete=False) temp = NamedTemporaryFile(delete=False)
# prevent Windows errors by closing the file before opening it.
# Windows cannot reuse the same open file name
temp.close() temp.close()
with open(temp.name, 'w', encoding='utf-8', errors='replace') as f: with open(temp.name, 'w', encoding='utf-8', errors='replace') as f:

Loading…
Cancel
Save