diff options
Diffstat (limited to 'pomu/util/fs.py')
-rw-r--r-- | pomu/util/fs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pomu/util/fs.py b/pomu/util/fs.py index f5f448c..3e69e2e 100644 --- a/pomu/util/fs.py +++ b/pomu/util/fs.py @@ -7,7 +7,7 @@ def strip_prefix(string, prefix): """Returns a string, stripped from its prefix""" if string.startswith(prefix): return string[len(prefix):] - else + else: return string def remove_file(repo, dst): |