Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.3rc1, 0.3, and 0.4rc1

hggtk/hglib: import missing Mercurial function

Changeset c968daf65b9e

Parent 6b648c52940f

by TK Soh

Changes to one file · Browse files at c968daf65b9e Showing diff from parent 6b648c52940f Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hglib.py Stacked
 
19
20
21
 
22
23
24
25
 
26
27
28
 
29
30
31
 
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@@ -19,13 +19,16 @@
  try:   # Mercurail 0.9.4   from mercurial.cmdutil import parse + from mercurial.cmdutil import parseconfig as _parseconfig   except:   try:   # Mercurail <= 0.9.3   from mercurial.commands import parse + from mercurial.commands import parseconfig as _parseconfig   except:   # Mercurail 0.9.5   from mercurial.dispatch import _parse as parse + from mercurial.dispatch import _parseconfig  finally:   demandimport.enable()