mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2026-01-03 11:04:51 +00:00
fix "logger" is not definied (#297)
Signed-off-by: Furry Chemistry <84753790+aryazakaria01@users.noreply.github.com>
This commit is contained in:
parent
5365a62103
commit
7bb610385d
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ def calcExpression(text):
|
||||||
except TypeError:
|
except TypeError:
|
||||||
return float(eval(text.replace('(', '*(')))
|
return float(eval(text.replace('(', '*(')))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(e, exc_info=True)
|
LOGGER.error(e, exc_info=True)
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue