mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 14:24:09 +01:00
Fix syntax error in sql-rewrite.py
On python 3.4.2 having kwargs after unpacking a dict in a function call seems to be a syntax error.
This commit is contained in:
parent
fe17acf07b
commit
4c2f51ce13
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ DEBUG = False
|
|||
def eprint(*args, **kwargs):
|
||||
if not DEBUG:
|
||||
return
|
||||
print(*args, **kwargs, file=sys.stderr)
|
||||
print(*args, file=sys.stderr, **kwargs)
|
||||
|
||||
|
||||
class Rewriter(object):
|
||||
|
|
Loading…
Add table
Reference in a new issue