Mercurial > p > roundup > code
diff roundup/cgi/TAL/markupbase.py @ 5377:12fe83f90f0d
Python 3 preparation: use repr() instead of ``.
Tool-generated patch.
| author | Joseph Myers <jsm@polyomino.org.uk> |
|---|---|
| date | Tue, 24 Jul 2018 21:36:02 +0000 |
| parents | 8c2402a78bb0 |
| children |
line wrap: on
line diff
--- a/roundup/cgi/TAL/markupbase.py Tue Jul 24 09:54:52 2018 +0000 +++ b/roundup/cgi/TAL/markupbase.py Tue Jul 24 21:36:02 2018 +0000 @@ -92,7 +92,7 @@ self.error("unexpected '[' char in declaration") else: self.error( - "unexpected %s char in declaration" % `rawdata[j]`) + "unexpected %s char in declaration" % repr(rawdata[j])) if j < 0: return j return -1 # incomplete @@ -113,7 +113,7 @@ if s != "<!": self.updatepos(declstartpos, j + 1) self.error("unexpected char in internal subset (in %s)" - % `s`) + % repr(s)) if (j + 2) == n: # end of buffer; incomplete return -1 @@ -131,7 +131,7 @@ if name not in ("attlist", "element", "entity", "notation"): self.updatepos(declstartpos, j + 2) self.error( - "unknown declaration %s in internal subset" % `name`) + "unknown declaration %s in internal subset" % repr(name)) # handle the individual names meth = getattr(self, "_parse_doctype_" + name) j = meth(j, declstartpos) @@ -162,7 +162,7 @@ j = j + 1 else: self.updatepos(declstartpos, j) - self.error("unexpected char %s in internal subset" % `c`) + self.error("unexpected char %s in internal subset" % repr(c)) # end of buffer reached return -1
