== not =
This commit is contained in:
parent
43fd99fae9
commit
b24387f00b
2
utils.py
2
utils.py
|
@ -113,7 +113,7 @@ def replacePlaceNames(old, new, operator="", start=0, end=100):
|
||||||
for m in matchedPlaces:
|
for m in matchedPlaces:
|
||||||
value = m['value']
|
value = m['value']
|
||||||
new_value = value.replace(old, new).strip()
|
new_value = value.replace(old, new).strip()
|
||||||
if new_value = '':
|
if new_value == '':
|
||||||
log = "EMPTY VALUE: %s" % m['id']
|
log = "EMPTY VALUE: %s" % m['id']
|
||||||
logFile.write(log)
|
logFile.write(log)
|
||||||
print log
|
print log
|
||||||
|
|
Loading…
Reference in New Issue
Block a user