Commit ee31abfb authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #2729 from grodzik/master

Fix for Python3
parents 3b830aac cee52283
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment