mirror of
https://github.com/xenia-project/xenia.git
synced 2026-07-11 01:24:34 +02:00
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:
+1
-1
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user