summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-05-30 15:09:50 +0200
committerhut <hut@lavabit.com>2010-05-30 15:09:50 +0200
commitda2d9aee9e6cb1cbcad11e59fa549a59eebd531e (patch)
tree060b46e1c73ce61cb9d4b40f40fbdb505daf79fb
parent40fcbc3d8bde9dd226f0d2fe16cf4126bdcc02c7 (diff)
downloadranger-da2d9aee9e6cb1cbcad11e59fa549a59eebd531e.tar.gz
ext.lazy_property: fixed indentation in docstring
-rw-r--r--ranger/ext/lazy_property.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ranger/ext/lazy_property.py b/ranger/ext/lazy_property.py
index 6f894179..320a1993 100644
--- a/ranger/ext/lazy_property.py
+++ b/ranger/ext/lazy_property.py
@@ -7,9 +7,9 @@ class lazy_property(object):
 	Example:
 	class Foo:
 		@lazy_property
-			def bar(self):
-				result = [...]
-				return result
+		def bar(self):
+			result = [...]
+			return result
 	"""
 
 	def __init__(self, method):