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