1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 23:40:39 +01: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

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