Edgewall Software

Changes between Version 2 and Version 4 of Ticket #12258


Ignore:
Timestamp:
Nov 30, 2015, 11:44:17 AM (8 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12258 – Description

    v2 v4  
    77
    88The problem is (again) the `ui.log(...)` function used by mercurial. The (temporary) fix is to:
    9 1. edit `mercurial.ui`, change `def log` to `def _log`
    10 1. edit `mercurial.tags`, `mercurial.branchmap`, and change `ui.log` to `ui._log`
     9Insert a
     10{{{
     11if (hasattr(obj, '__call__')):
     12}}}
     13and change the indentation. Both Trac and hgwebdir.cgi/.wsgi are working that way.
    1114
    1215Unfortunately, these changes will be gone as soon as mercurial gets an update.