Fix for Python3

In Python3 without universal_newlines set to True
output from Popen was byte-encoded.
pull/2729/head
Paweł Tomak 2014-04-18 23:09:38 +02:00
parent a9061f34d7
commit cee52283d8
1 changed files with 1 additions and 1 deletions

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