aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/lib/vcs/backends/git/changeset.py
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2013-02-21 02:31:21 +0100
committerMarcin Kuzminski <marcin@python-works.com>2013-02-21 02:31:21 +0100
commit4f5eb70cdd8355176e10334e835b8a9ec39f2186 (patch)
treebd6ec24b635db61af48001afb364858b8a252587 /rhodecode/lib/vcs/backends/git/changeset.py
parent11922026ebc78bb81efd64a27226a8331be1bd9f (diff)
whitespace cleanup
--HG-- branch : beta
Diffstat (limited to 'rhodecode/lib/vcs/backends/git/changeset.py')
-rw-r--r--rhodecode/lib/vcs/backends/git/changeset.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/lib/vcs/backends/git/changeset.py b/rhodecode/lib/vcs/backends/git/changeset.py
index 0721624c..e878c918 100644
--- a/rhodecode/lib/vcs/backends/git/changeset.py
+++ b/rhodecode/lib/vcs/backends/git/changeset.py
@@ -364,7 +364,7 @@ class GitChangeset(BaseChangeset):
else:
frmt = 'tar'
_git_path = rhodecode.CONFIG.get('git_path', 'git')
- cmd = '%s archive --format=%s --prefix=%s/ %s' % (_git_path,
+ cmd = '%s archive --format=%s --prefix=%s/ %s' % (_git_path,
frmt, prefix, self.raw_id)
if kind == 'tgz':
cmd += ' | gzip -9'