summaryrefslogtreecommitdiff
path: root/fileutils.py
diff options
context:
space:
mode:
authoradim <devnull@localhost>2007-03-06 23:41:20 +0100
committeradim <devnull@localhost>2007-03-06 23:41:20 +0100
commit73903a79a8834d826b9c236f3861d93dbe7bf9fd (patch)
treee1048a90083f03ab587624ba3031b93119de2684 /fileutils.py
parent037a1367fd1d7b07d465a6427ef744f9d9736303 (diff)
downloadlogilab-common-73903a79a8834d826b9c236f3861d93dbe7bf9fd.tar.gz
quick fix to avoid docstring being tested by doctest (need to take a look at doctest to learn how to skip decently a test
Diffstat (limited to 'fileutils.py')
-rw-r--r--fileutils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fileutils.py b/fileutils.py
index 9ede37a..720bebc 100644
--- a/fileutils.py
+++ b/fileutils.py
@@ -64,9 +64,9 @@ def first_level_directory(path):
def abspath_listdir(path):
"""lists path's content using absolute paths
- >>> os.listdir('/home')
+ >> os.listdir('/home')
['adim', 'alf', 'arthur', 'auc']
- >>> abspath_listdir('/home')
+ >> abspath_listdir('/home')
['/home/adim', '/home/alf', '/home/arthur', '/home/auc']
"""
path = abspath(path)