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:
gibbed 2019-08-17 05:51:02 -05:00 committed by Rick Gibbed
parent b25c50164f
commit c3c77187bb

View file

@ -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: