From da2d9aee9e6cb1cbcad11e59fa549a59eebd531e Mon Sep 17 00:00:00 2001 From: hut Date: Sun, 30 May 2010 15:09:50 +0200 Subject: ext.lazy_property: fixed indentation in docstring --- ranger/ext/lazy_property.py | 6 +++--- 1 file 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): -- cgit 1.4.1-2-gfad0 value='7e2d1613c9c52b7c2090eb3db49c65a8ec42c219'>this commit mirror of ranger - a simple, vim-like file managerakspecs <akspecs@tilde.institute>
about summary refs log blame commit diff stats
path: root/ranger.py
blob: 7160160f9a66958a9c9eabf50ce8fff4a47797c3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10