Mercurial > treepkg
changeset 447:1d16e4844f98
Cleanup misplaced whitespace
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Mon, 09 Aug 2010 14:00:00 +0000 |
parents | bee2e5f6cf8d |
children | 12f3642e1756 |
files | treepkg/git.py |
diffstat | 1 files changed, 4 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/treepkg/git.py Mon Aug 09 13:56:31 2010 +0000 +++ b/treepkg/git.py Mon Aug 09 14:00:00 2010 +0000 @@ -23,9 +23,9 @@ def checkout(url, localdir, branch=None): """Clones the repository at url into the localdir""" - run.call(cmdexpand("git clone $url $localdir", **locals())) + run.call(cmdexpand("git clone $url $localdir", **locals())) if branch: - run.call(cmdexpand("git checkout --track -b local $branch", + run.call(cmdexpand("git checkout --track -b local $branch", **locals()), cwd=localdir) else: run.call(cmdexpand("git checkout --track -b local master"), @@ -79,10 +79,8 @@ return last_changed_revision(localdir) def check_working_copy(self, localdir): - """ - FIXME STUB: Not implemented for git - """ - return None + """FIXME STUB: Not implemented for git""" + return None class GitWorkingCopy(object):