diff --git a/appveyor.yml b/appveyor.yml index 2507991f5..3b07a43f6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,6 +2,7 @@ environment: PACKAGE: "GitSavvy" SUBLIME_TEXT_VERSION : "3" UNITTESTING_TAG : "master" + PYTHON: "C:\\Python33-x64" install: - ps: git config --global user.email gitsavvy@gitsavvy.com diff --git a/core/git_command.py b/core/git_command.py index 52d66f60c..07d0693b6 100755 --- a/core/git_command.py +++ b/core/git_command.py @@ -73,20 +73,16 @@ def read_stdout(self): try: for line in iter(self.process.stdout.readline, b""): self.stdout = self.stdout + line - util.log.panel_append(line.decode()) util.log.panel_append(line.decode(), run_async=False) except IOError as err: - util.log.panel_append(err) util.log.panel_append(err, run_async=False) def read_stderr(self): try: for line in iter(self.process.stderr.readline, b""): self.stderr = self.stderr + line - util.log.panel_append(line.decode()) util.log.panel_append(line.decode(), run_async=False) except IOError as err: - util.log.panel_append(err) util.log.panel_append(err, run_async=False) def communicate(self, stdin):