##// END OF EJS Templates
mq: split up overly long line
Dan Villiom Podlaski Christiansen -
r15087:adad8d68 default
parent child Browse files
Show More
@@ -295,7 +295,8 b' class queue(object):'
295 295 n, name = entry
296 296 yield statusentry(bin(n), name)
297 297 elif l.strip():
298 self.ui.warn(_('malformated mq status line: %s\n') % entry)
298 msg = _('malformated mq status line: %s\n') % entry
299 self.ui.warn(msg)
299 300 # else we ignore empty lines
300 301 lines = self.opener.read(self.statuspath).splitlines()
301 302 return list(parselines(lines))
General Comments 0
You need to be logged in to leave comments. Login now