From 27492e9d1ca951116d0b193fbd41e9146c7c66fc Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 29 Apr 2009 22:34:04 +0200 Subject: '# On branch master # Changes to be committed: # (use "git reset HEAD ..." to unstage) # # modified: g-ed-it/docHelper.py # # Changed but not updated: # (use "git add ..." to update what will be committed) # # modified: g-ed-it/gitAction.py # Do not show error when file is not in a git WT.' --- g-ed-it/docHelper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit