diff options
author | hut <hut@lavabit.com> | 2013-02-16 02:21:16 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2013-02-16 02:21:16 +0100 |
commit | 15fb093cae01dd5c160d319a19557c52da759963 (patch) | |
tree | d733bf5dd1bab09fbd6e1952b5973a8132717365 | |
parent | 64a051f54f41bcfa8259bac3217ccf57ba2545e2 (diff) | |
download | ranger-15fb093cae01dd5c160d319a19557c52da759963.tar.gz |
ext.vcs.vcs: typo s/true/True
-rw-r--r-- | ranger/ext/vcs/vcs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/ext/vcs/vcs.py b/ranger/ext/vcs/vcs.py index 4fca48c7..e0d434e0 100644 --- a/ranger/ext/vcs/vcs.py +++ b/ranger/ext/vcs/vcs.py @@ -94,7 +94,7 @@ class Vcs(object): def _path_contains(self, parent, path): """Checks wether path is an object belonging to the subtree in parent""" - if parent == path: return true + if parent == path: return True return os.path.commonprefix([parent, path]) == parent |