remove excessive warning on ancient machines;
sqlite<3.9 combined with python<3.6> would always warn that `-e2t` is not supported, even when not requested
This commit is contained in:
parent
55a011b9c1
commit
666297f6fb
@ -654,7 +654,7 @@ class Up2k(object):
|
||||
return False, flags
|
||||
|
||||
ret = {k: v for k, v in flags.items() if not k.startswith("e2t")}
|
||||
if ret.keys() == flags.keys():
|
||||
if len(ret) == len(flags):
|
||||
return False, flags
|
||||
|
||||
return True, ret
|
||||
|
Loading…
Reference in New Issue
Block a user