diff options
author | Robby Russell <robby@planetargon.com> | 2014-04-19 07:15:04 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-04-19 07:15:04 -0700 |
commit | ee31abfb2d627fd5e1a75f9e013e5016dba49b01 (patch) | |
tree | af44828bb6a2a48bad2b0fdfd25aa6d013cc0fb8 | |
parent | 3b830aac8c15e9debd4f29bfbfa31fa86dacc8cd (diff) | |
parent | cee52283d8f5e18ba962cdb7b0acec2627e647e3 (diff) | |
download | zsh-ee31abfb2d627fd5e1a75f9e013e5016dba49b01.tar.gz zsh-ee31abfb2d627fd5e1a75f9e013e5016dba49b01.tar.bz2 zsh-ee31abfb2d627fd5e1a75f9e013e5016dba49b01.zip |
Merge pull request #2729 from grodzik/master
Fix for Python3
-rw-r--r-- | plugins/git-prompt/gitstatus.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/git-prompt/gitstatus.py b/plugins/git-prompt/gitstatus.py index ef894bff2..256841432 100644 --- a/plugins/git-prompt/gitstatus.py +++ b/plugins/git-prompt/gitstatus.py @@ -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 |