wrappers: call meta.getmessage instead of util

This commit is contained in:
Sean Farley 2014-03-24 11:20:52 -05:00
parent 379a588508
commit 07525f5144

View File

@ -461,7 +461,7 @@ def pull(repo, source, heads=[], force=False):
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):