Fix an issue in git-clang-format that exists with Python 3.4. Issue resolved on its own by Python 3.7 (unknown when it's actually resolved) but still good to have this fix.
This commit is contained in:
parent
b25c50164f
commit
c3c77187bb
|
@ -522,7 +522,7 @@ def apply_changes(old_tree, new_tree, force=False, patch_mode=False):
|
|||
|
||||
|
||||
def run(*args, **kwargs):
|
||||
stdin = kwargs.pop('stdin', '')
|
||||
stdin = kwargs.pop('stdin', to_bytes(''))
|
||||
verbose = kwargs.pop('verbose', True)
|
||||
strip = kwargs.pop('strip', True)
|
||||
for name in kwargs:
|
||||
|
|
Loading…
Reference in New Issue