Commit 27af8b15 by Chris Jerdonek

Moved the END_OF_LINE_CHARACTERS constant to the top of the module.

parent 8f2ef63a
......@@ -12,6 +12,9 @@ import re
import types
END_OF_LINE_CHARACTERS = ['\r', '\n']
try:
# The collections.Callable class is not available until Python 2.6.
import collections.Callable
......@@ -272,11 +275,6 @@ class RenderEngine(object):
output = "".join(output)
return output
#
END_OF_LINE_CHARACTERS = ['\r', '\n']
# TODO: what are the possibilities for val?
def call(val, view, template=None):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment