Skip to content
Snippets Groups Projects
Commit 146bad85 authored by David Soria Parra's avatar David Soria Parra
Browse files

bookmarks: always write undo file

Always write the undo file. Otherwise, rollback will not work for
the initial bookmark as undo.bookmarks doesn't exists. In this case
undo.bookmarks needs already be empty.
parent 035684c6
No related branches found
No related tags found
No related merge requests found
......@@ -48,9 +48,8 @@
try:
bms = repo.opener('bookmarks').read()
except IOError:
bms = None
if bms is not None:
repo.opener('undo.bookmarks', 'w').write(bms)
bms = ''
repo.opener('undo.bookmarks', 'w').write(bms)
if repo._bookmarkcurrent not in refs:
setcurrent(repo, None)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment