|
|
@@ -95,6 +95,8 @@ def cron():
|
|
|
pprint((row['maintainer'], row['player'], property,))
|
|
|
cur.execute(query_second, (row['maintainer'], row['player'], property,))
|
|
|
p_row = cur.fetchone()
|
|
|
+ if not p_row:
|
|
|
+ continue
|
|
|
print(f"property: '{property}' parent: '{p_row['parent']}' -> value: '{p_row['value']}'")
|
|
|
retrieved_properties.append(property)
|
|
|
new_value = ''
|