mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
Merge 2bb415f42e
into 6a529f4f92
This commit is contained in:
commit
03e674893c
@ -134,12 +134,14 @@ def save(config, data):
|
||||
|
||||
f.flush()
|
||||
os.fsync(f)
|
||||
except IOError as ex:
|
||||
print('Error saving autojump data (disk full?)' % ex, file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
# move temp_file -> autojump.txt
|
||||
move_file(temp.name, config['data_path'])
|
||||
except IOError as ex:
|
||||
print('%s Error saving autojump data (disk full?)' % ex, file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
|
||||
# create backup file if it doesn't exist or is older than BACKUP_THRESHOLD
|
||||
if not os.path.exists(config['backup_path']) or \
|
||||
|
Loading…
Reference in New Issue
Block a user