Merge pull request #2729 from grodzik/master

Fix for Python3
This commit is contained in:
Robby Russell
2014-04-19 07:15:04 -07:00

View File

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