fix typo
This commit is contained in:
parent
ddb70beedd
commit
e2cd0861a3
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ def get_propery(element, name):
|
||||||
def melt_xml(file):
|
def melt_xml(file):
|
||||||
out = None
|
out = None
|
||||||
real_path = os.path.realpath(path)
|
real_path = os.path.realpath(path)
|
||||||
if file in _CACHE and isinstance(_CACHE[file], list)
|
if file in _CACHE and isinstance(_CACHE[file], list):
|
||||||
ts, out = _CACHE[file]
|
ts, out = _CACHE[file]
|
||||||
if os.stat(real_path).st_mtime != ts:
|
if os.stat(real_path).st_mtime != ts:
|
||||||
out = None
|
out = None
|
||||||
|
|
Loading…
Reference in a new issue