Mercurial > p > roundup > code
diff roundup/cgi/templating.py @ 3702:06d7816976bc
python 2.6 compatibility
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sat, 09 Sep 2006 05:50:17 +0000 |
| parents | 9cc2566cc7d9 |
| children | 2862cb0d9be4 |
line wrap: on
line diff
--- a/roundup/cgi/templating.py Sat Sep 09 05:42:45 2006 +0000 +++ b/roundup/cgi/templating.py Sat Sep 09 05:50:17 2006 +0000 @@ -1,3 +1,5 @@ +from __future__ import nested_scopes + """Implements the API used in the HTML templating for the web interface. """ @@ -17,7 +19,6 @@ __docformat__ = 'restructuredtext' -from __future__ import nested_scopes import sys, cgi, urllib, os, re, os.path, time, errno, mimetypes, csv import calendar, textwrap
