changeset 1286:8cec74df235a

wrappers: call meta.getmessage instead of util
author Sean Farley <sean.michael.farley@gmail.com>
date Mon, 24 Mar 2014 11:20:52 -0500
parents f2d1c59738f9
children 3e6013940854
files hgsubversion/wrappers.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgsubversion/wrappers.py
+++ b/hgsubversion/wrappers.py
@@ -461,7 +461,7 @@ def pull(repo, source, heads=[], force=F
                 converted = False
                 while not converted:
                     try:
-                        msg = util.getmessage(ui, r).strip()
+                        msg = meta.getmessage(r).strip()
                         if msg:
                             msg = [s.strip() for s in msg.splitlines() if s][0]
                         if getattr(ui, 'termwidth', False):