comparison hgext/mq.py @ 16231:ce292f1379ba stable

i18n: fix all remaining uses of % inside _()
author Matt Mackall <mpm@selenic.com>
date Thu, 08 Mar 2012 13:35:27 -0600
parents 6b52963ced73
children 877aea86fb73 cf17e76be4dd
comparison
equal deleted inserted replaced
16230:d4d35fd0889d 16231:ce292f1379ba
1190 if self.applied: 1190 if self.applied:
1191 raise util.Abort(_("cannot push --exact with applied patches")) 1191 raise util.Abort(_("cannot push --exact with applied patches"))
1192 root = self.series[start] 1192 root = self.series[start]
1193 target = patchheader(self.join(root), self.plainmode).parent 1193 target = patchheader(self.join(root), self.plainmode).parent
1194 if not target: 1194 if not target:
1195 raise util.Abort(_("%s does not have a parent recorded" % root)) 1195 raise util.Abort(
1196 _("%s does not have a parent recorded") % root)
1196 if not repo[target] == repo['.']: 1197 if not repo[target] == repo['.']:
1197 hg.update(repo, target) 1198 hg.update(repo, target)
1198 1199
1199 if move: 1200 if move:
1200 if not patch: 1201 if not patch: