# HG changeset patch # User Benoit Boissinot # Date 2009-03-28 23:08:33 # Node ID 0b2561b5306967e8ec749e6480c7bdbc2717ae8d # Parent 14ec64d41dad9d776f1251c8206f10812df44798 record: fix indentation diff --git a/hgext/record.py b/hgext/record.py --- a/hgext/record.py +++ b/hgext/record.py @@ -329,9 +329,9 @@ def filterpatch(ui, chunks): if resp_file[0] is None and resp_all[0] is None: chunk.pretty(ui) r = total == 1 and prompt(_('record this change to %r?') % - chunk.filename()) or \ - prompt(_('record change %d/%d to %r?') % - (pos, total, chunk.filename())) + chunk.filename()) \ + or prompt(_('record change %d/%d to %r?') % + (pos, total, chunk.filename())) if r == _('y'): if fixoffset: chunk = copy.copy(chunk)