Skip to content
Snippets Groups Projects
Commit fdd63acf authored by Laurent Charignon's avatar Laurent Charignon
Browse files

convert: indentation change to make the next patch more legible

We put the code to be indented in the next patch in a "if True:" block to make
it easier to review.
parent 4b0c3df5
No related branches found
No related tags found
No related merge requests found
......@@ -410,12 +410,12 @@
def putbookmarks(self, updatedbookmark):
if not len(updatedbookmark):
return
self.ui.status(_("updating bookmarks\n"))
destmarks = self.repo._bookmarks
for bookmark in updatedbookmark:
destmarks[bookmark] = bin(updatedbookmark[bookmark])
destmarks.write()
if True:
self.ui.status(_("updating bookmarks\n"))
destmarks = self.repo._bookmarks
for bookmark in updatedbookmark:
destmarks[bookmark] = bin(updatedbookmark[bookmark])
destmarks.write()
def hascommitfrommap(self, rev):
# the exact semantics of clonebranches is unclear so we can't say no
......
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