We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 442174f commit b0a1950Copy full SHA for b0a1950
1 file changed
git_explode/gitutils.py
@@ -16,7 +16,7 @@ def git(cls, *args):
16
@classmethod
17
def quiet_git(cls, *args):
18
cmd_words = ['git'] + list(args)
19
- output = subprocess.check_output(cmd_words)
+ output = subprocess.check_output(cmd_words, universal_newlines=True)
20
return output.rstrip()
21
22
0 commit comments