Mercurial > p > roundup > code
changeset 1691:d6177306d010 maint-0.5
Silence another SyntaxWarning
| author | Anthony Baxter <anthonybaxter@users.sourceforge.net> |
|---|---|
| date | Tue, 24 Jun 2003 04:07:07 +0000 |
| parents | 580ce488f976 |
| children | 03170eb33b82 |
| files | roundup/cgi/PageTemplates/TALES.py |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/cgi/PageTemplates/TALES.py Tue Jun 24 03:47:45 2003 +0000 +++ b/roundup/cgi/PageTemplates/TALES.py Tue Jun 24 04:07:07 2003 +0000 @@ -19,7 +19,7 @@ - changed imports to import from roundup.cgi """ -__version__='$Revision: 1.4 $'[11:-2] +__version__='$Revision: 1.4.2.1 $'[11:-2] import re, sys from roundup.cgi import ZTUtils @@ -228,7 +228,7 @@ evaluateValue = evaluate evaluateBoolean = evaluate - def evaluateText(self, expr, None=None): + def evaluateText(self, expr): text = self.evaluate(expr) if text is Default or text is None: return text
