aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2022-11-06 21:33:32 +0300
committerEvgeny Zinoviev <me@ch1p.io>2022-11-06 21:33:32 +0300
commit84ffac33f58c8bba9690ab058d1c8faa3fb2ffa3 (patch)
treefec2925326acdc397af3a4dda9e62df131ba18e5
parent0cebc9b2a2b4f0c9720c2ed7ef5a3741e46e01ff (diff)
inverter_bot: fix generation command
-rwxr-xr-xsrc/inverter_bot.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inverter_bot.py b/src/inverter_bot.py
index cd081b4..1ac702c 100755
--- a/src/inverter_bot.py
+++ b/src/inverter_bot.py
@@ -802,7 +802,7 @@ def generation_handler(ctx: bot.Context) -> None:
gs = inverter.exec('get-status')['data']
- today = inverter.exec('get-day-generated', (today.year, today.month, today.day))['data']
+ gen_today = inverter.exec('get-day-generated', (today.year, today.month, today.day))['data']
gen_yday = None
gen_yday2 = None
@@ -816,7 +816,7 @@ def generation_handler(ctx: bot.Context) -> None:
html = f'<b>{ctx.lang("gen_input_power")}:</b> %s %s' % (gs['pv1_input_power']['value'], gs['pv1_input_power']['unit'])
html += ' (%s %s)' % (gs['pv1_input_voltage']['value'], gs['pv1_input_voltage']['unit'])
- html += f'\n<b>{ctx.lang("today")}:</b> %s Wh' % (today['wh'])
+ html += f'\n<b>{ctx.lang("today")}:</b> %s Wh' % (gen_today['wh'])
if gen_yday is not None:
html += f'\n<b>{ctx.lang("yday1")}:</b> %s Wh' % (gen_yday['wh'])