meld r1245 - trunk/vc
- From: vincele svn gnome org
- To: svn-commits-list gnome org
- Subject: meld r1245 - trunk/vc
- Date: Mon, 9 Mar 2009 22:48:58 +0000 (UTC)
Author: vincele
Date: Mon Mar 9 22:48:58 2009
New Revision: 1245
URL: http://svn.gnome.org/viewvc/meld?rev=1245&view=rev
Log:
Use self.cmd, dont harcode "git" command
Modified:
trunk/vc/git.py
Modified: trunk/vc/git.py
==============================================================================
--- trunk/vc/git.py (original)
+++ trunk/vc/git.py Mon Mar 9 22:48:58 2009
@@ -72,7 +72,7 @@
def lookup_tree(self):
while 1:
try:
- proc = os.popen("cd %s && git status --untracked-files" % self.root)
+ proc = os.popen("cd %s && %s status --untracked-files" % (self.root, self.CMD))
entries = proc.read().split("\n")[:-1]
break
except OSError, e:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]