Skip to content

Commit

Permalink
Merge 9853b44 into f4c97be
Browse files Browse the repository at this point in the history
  • Loading branch information
randy3k committed Jan 24, 2019
2 parents f4c97be + 9853b44 commit ded297b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 0 additions & 4 deletions core/git_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit ded297b

Please sign in to comment.