changeset 687:dd8733d21b96

util: drop support for Mercurial < 1.4
author Siddharth Agarwal <sid0@fb.com>
date Wed, 19 Feb 2014 18:49:42 -0800
parents c7129c72baff
children 7ca655e44d9a
files hggit/util.py
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/hggit/util.py
+++ b/hggit/util.py
@@ -4,10 +4,6 @@
 except ImportError:
     from ordereddict import OrderedDict
 
-def progress(ui, *args, **kwargs):
-    """Shim for progress on hg < 1.4. Remove when 1.3 is dropped."""
-    getattr(ui, 'progress', lambda *x, **kw: None)(*args, **kwargs)
-
 def parse_hgsub(lines):
     """Fills OrderedDict with hgsub file content passed as list of lines"""
     rv = OrderedDict()