hgext/blackbox.py
changeset 40633 4a38a67d0e96
parent 40632 da3bc2f54b02
child 40634 c9876c00d292
--- a/hgext/blackbox.py	Sun Nov 11 16:43:29 2018 +0900
+++ b/hgext/blackbox.py	Sun Nov 11 16:44:30 2018 +0900
@@ -165,9 +165,6 @@
             else:
                 return
 
-            vfs = ui._bbvfs
-            repo = ui._bbrepo
-
             if getattr(ui, '_bbinlog', False):
                 # recursion and failure guard
                 return
@@ -180,7 +177,7 @@
             formattedmsg = msg[0] % msg[1:]
             rev = '(unknown)'
             changed = ''
-            ctx = repo[None]
+            ctx = ui._bbrepo[None]
             parents = ctx.parents()
             rev = ('+'.join([hex(p.node()) for p in parents]))
             if (ui.configbool('blackbox', 'dirty') and
@@ -193,7 +190,7 @@
             try:
                 fmt = '%s %s @%s%s (%s)%s> %s'
                 args = (date, user, rev, changed, pid, src, formattedmsg)
-                with _openlogfile(ui, vfs) as fp:
+                with _openlogfile(ui, ui._bbvfs) as fp:
                     fp.write(fmt % args)
             except (IOError, OSError) as err:
                 self.debug('warning: cannot write to blackbox.log: %s\n' %