Merge pull request #2729 from grodzik/master

Fix for Python3
pull/2711/merge
Robby Russell 2014-04-19 07:15:04 -07:00
commit ee31abfb2d
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ symbols = {
} }
output, error = Popen( output, error = Popen(
['git', 'status'], stdout=PIPE, stderr=PIPE).communicate() ['git', 'status'], stdout=PIPE, stderr=PIPE, universal_newlines=True).communicate()
if error: if error:
import sys import sys