diff options
author | Benjamin Trofatter <bentrofatter@gmail.com> | 2012-03-24 18:43:15 -0500 |
---|---|---|
committer | Benjamin Trofatter <bentrofatter@gmail.com> | 2012-03-24 18:43:15 -0500 |
commit | 4b395f679029b8375063e4408ca08a7a860cb99c (patch) | |
tree | f408b56e4fcfe12a47be5d2200f3a659db8ef097 /mako/runtime.py | |
parent | f7983ce165440bdaeac4d544f393fc76d8ce4cf0 (diff) | |
download | external_python_mako-4b395f679029b8375063e4408ca08a7a860cb99c.tar.gz external_python_mako-4b395f679029b8375063e4408ca08a7a860cb99c.tar.bz2 external_python_mako-4b395f679029b8375063e4408ca08a7a860cb99c.zip |
Brought all modules into PEP 8 width compliance
Diffstat (limited to 'mako/runtime.py')
-rw-r--r-- | mako/runtime.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mako/runtime.py b/mako/runtime.py index 5a83a81..9101af3 100644 --- a/mako/runtime.py +++ b/mako/runtime.py @@ -645,8 +645,8 @@ def capture(context, callable_, *args, **kwargs): if not callable(callable_): raise exceptions.RuntimeException( - "capture() function expects a callable as " - "its argument (i.e. capture(func, *args, **kwargs))" + "capture() function expects a callable as " + "its argument (i.e. capture(func, *args, **kwargs))" ) context._push_buffer() try: |