mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-30 09:26:32 +02:00
warning fixes
This commit is contained in:
parent
82342a7f61
commit
91f53341bc
7 changed files with 9 additions and 14 deletions
|
@ -9,7 +9,7 @@ def findMetadata(d, keys, defaultValue):
|
|||
for key in keys:
|
||||
v = d.get(key, None)
|
||||
k = key.lower()
|
||||
if v != None:
|
||||
if v is not None:
|
||||
return v
|
||||
for dk, dv in d.iteritems():
|
||||
dkm = dk.lower().replace(" ", "")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue