diff options
author | Yaroslav Halchenko <debian@onerussian.com> | 2017-04-03 16:02:37 -0400 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2017-04-04 10:36:34 +0200 |
commit | 3ef889531eed9ac73ece70318d4eeb45d81b9bc5 (patch) | |
tree | b1e4a69cb219a1eeca05d3332f8e99f9246d8741 | |
parent | 8dffba51b4fd88f7d26a43cf6d1fbbe3cdb9f44d (diff) | |
download | gitpython-3ef889531eed9ac73ece70318d4eeb45d81b9bc5.tar.gz |
so minor that wasn't even worth my time typing this comment
-rw-r--r-- | git/repo/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index b5e2e08d..c124974b 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -882,7 +882,7 @@ class Repo(object): # git clone --bare /cygwin/d/foo.git /cygwin/d/C:\\Work # clone_path = (Git.polish_url(path) - if Git.is_cygwin() and 'bare'in kwargs + if Git.is_cygwin() and 'bare' in kwargs else path) sep_dir = kwargs.get('separate_git_dir') if sep_dir: |