Skip to content

Commit b0a1950

Browse files
committed
fix another Python 3 bytes vs strings bug
1 parent 442174f commit b0a1950

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

git_explode/gitutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def git(cls, *args):
1616
@classmethod
1717
def quiet_git(cls, *args):
1818
cmd_words = ['git'] + list(args)
19-
output = subprocess.check_output(cmd_words)
19+
output = subprocess.check_output(cmd_words, universal_newlines=True)
2020
return output.rstrip()
2121

2222
@classmethod

0 commit comments

Comments
 (0)