summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Hammel <jhammel@mozilla.com>2013-12-19 20:18:35 -0800
committerJeff Hammel <jhammel@mozilla.com>2013-12-19 20:18:35 -0800
commit939b997c635f07bec52676c3e564e044db07f32f (patch)
tree71c8aa8c248df34345451188f0eae2521271f5de
parent0a8736e9c891d68be19138c6effc4b950986705a (diff)
downloadtempita-939b997c635f07bec52676c3e564e044db07f32f.tar.gz
order imports
-rw-r--r--tempita/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tempita/__init__.py b/tempita/__init__.py
index 91407b3..467bd5b 100644
--- a/tempita/__init__.py
+++ b/tempita/__init__.py
@@ -29,13 +29,13 @@ can use ``__name='tmpl.html'`` to set the name of the template.
If there are syntax errors ``TemplateError`` will be raised.
"""
-import re
-import sys
import cgi
-from urllib import quote as url_quote
import os
+import re
+import sys
import tokenize
from cStringIO import StringIO
+from urllib import quote as url_quote
from tempita._looper import looper
from tempita.compat3 import bytes, basestring_, next, is_unicode, coerce_text