diff options
author | eliott <eliott@cactuswax.net> | 2007-12-29 16:42:55 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-12-29 16:42:55 -0800 |
commit | 3e297efad8e6dbb7622cedd68a2457f00dd09080 (patch) | |
tree | 1d66d932fa8e90bfa2c71f92d77a24b823831540 /lib | |
parent | ff6d99b054efddb0725b0ddcbc81c58f7c8ce375 (diff) |
Massive retab fest.
Also added vim command comment to the end of files.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/markdown.py | 1 | ||||
-rw-r--r-- | lib/sitelogin.py | 2 | ||||
-rw-r--r-- | lib/utils.py | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/lib/markdown.py b/lib/markdown.py index 6b3e57a2..d780994f 100644 --- a/lib/markdown.py +++ b/lib/markdown.py @@ -1868,6 +1868,7 @@ Apr. 2004: Manfred's version at http://www.dwerg.net/projects/markdown/ """ +# vim: set ts=4 sw=4 et: diff --git a/lib/sitelogin.py b/lib/sitelogin.py index 3edec7c1..53721095 100644 --- a/lib/sitelogin.py +++ b/lib/sitelogin.py @@ -11,3 +11,5 @@ class SiteLogin: else: return HttpResponseRedirect('%s?next=%s' % (self.login_path, request.path)) +# vim: set ts=4 sw=4 et: + diff --git a/lib/utils.py b/lib/utils.py index 59df963b..0813ac22 100644 --- a/lib/utils.py +++ b/lib/utils.py @@ -32,3 +32,5 @@ def render_response(req, *args, **kwargs): kwargs['context_instance'] = RequestContext(req) return render_to_response(*args, **kwargs) +# vim: set ts=4 sw=4 et: + |