summaryrefslogtreecommitdiffstats
path: root/g-ed-it
diff options
context:
space:
mode:
authorMatthieu Gautier <mgautier@fedoraproject.org>2009-04-29 22:34:04 +0200
committerMatthieu Gautier <mgautier@fedoraproject.org>2009-04-29 22:34:04 +0200
commit27492e9d1ca951116d0b193fbd41e9146c7c66fc (patch)
tree31ac4fa4a62a02b7d9a97e58cd02879074311c49 /g-ed-it
parent25fc4f56a60c0cdab5b201c4df0f7e8071e9c4a9 (diff)
downloadg-ed-it-27492e9d1ca951116d0b193fbd41e9146c7c66fc.tar.gz
g-ed-it-27492e9d1ca951116d0b193fbd41e9146c7c66fc.tar.xz
g-ed-it-27492e9d1ca951116d0b193fbd41e9146c7c66fc.zip
'# On branch master
# Changes to be committed: # (use "git reset HEAD <file>..." to unstage) # # modified: g-ed-it/docHelper.py # # Changed but not updated: # (use "git add <file>..." to update what will be committed) # # modified: g-ed-it/gitAction.py # Do not show error when file is not in a git WT.'
Diffstat (limited to 'g-ed-it')
-rw-r--r--g-ed-it/docHelper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/g-ed-it/docHelper.py b/g-ed-it/docHelper.py
index a5dd8c9..dcd2c29 100644
--- a/g-ed-it/docHelper.py
+++ b/g-ed-it/docHelper.py
@@ -59,7 +59,7 @@ class DocHelper (object):
self.index2WT = None
if not self.doc.is_untitled():
- subPro = subprocess.Popen(["git-ls-files",os.path.basename(uri)],stdout=subprocess.PIPE,cwd=cwd)
+ subPro = subprocess.Popen(["git-ls-files",os.path.basename(uri)],stdout=subprocess.PIPE,stderr=subprocess.STDOUT,cwd=cwd)
statusStr = subPro.communicate()[0]
if subPro.returncode == 0 :
self.inGitDir = True