commands.bookmarks: move hexfn to inside list block
authorSiddharth Agarwal <sid0@fb.com>
Tue, 19 Nov 2013 12:43:29 -0800
changeset 20235 a602d2aca8bf
parent 20234 8a133190da89
child 20236 d0097d5818f9
commands.bookmarks: move hexfn to inside list block This isn't used outside this block, nor is it expected to be.
mercurial/commands.py
--- a/mercurial/commands.py	Tue Nov 19 12:42:17 2013 -0800
+++ b/mercurial/commands.py	Tue Nov 19 12:43:29 2013 -0800
@@ -807,8 +807,6 @@
     rename = opts.get('rename')
     inactive = opts.get('inactive')
 
-    hexfn = ui.debugflag and hex or short
-
     def checkformat(mark):
         mark = mark.strip()
         if not mark:
@@ -920,6 +918,7 @@
         finally:
             wlock.release()
     else: # show bookmarks
+        hexfn = ui.debugflag and hex or short
         marks = repo._bookmarks
         if len(marks) == 0:
             ui.status(_("no bookmarks set\n"))