0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

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
commit ee31abfb2d

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