Mercurial > public > mercurial-scm > hg-stable
diff mercurial/ui.py @ 4633:ff7253a0d1da
Cleanup of whitespace, indentation and line continuation.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Tue, 19 Jun 2007 08:06:37 +0200 |
parents | d97fd22a0ea9 |
children | 63b9d2deed48 |
line wrap: on
line diff
--- a/mercurial/ui.py Mon Jun 18 21:30:27 2007 -0500 +++ b/mercurial/ui.py Tue Jun 19 08:06:37 2007 +0200 @@ -166,15 +166,14 @@ try: fp = open(filename) except IOError, inst: - raise util.Abort(_("unable to open %s: %s") % (filename, - getattr(inst, "strerror", inst))) + raise util.Abort(_("unable to open %s: %s") % + (filename, getattr(inst, "strerror", inst))) try: cdata.readfp(fp, filename) finally: fp.close() except ConfigParser.ParsingError, inst: - raise util.Abort(_("failed to parse %s\n%s") % (filename, - inst)) + raise util.Abort(_("failed to parse %s\n%s") % (filename, inst)) for section in sections: if not cdata.has_section(section):