From a852b72a3581b17a75649a3c42dcf048a206aa32 Mon Sep 17 00:00:00 2001 From: Fredrick W Warren Date: Thu, 5 May 2022 12:21:43 -0700 Subject: [PATCH] changed lb to lbs --- solar_edge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solar_edge.py b/solar_edge.py index 5d62f7f..c39daba 100755 --- a/solar_edge.py +++ b/solar_edge.py @@ -52,7 +52,7 @@ image = Image.open(bundle_dir + "/" + infile) font = ImageFont.truetype(bundle_dir + "/" + font_face, 19) draw = ImageDraw.Draw(image) -draw.text((xpos, line1), str(co2)+" lb", font=font, fill=fill_color) +draw.text((xpos, line1), str(co2)+" lbs", font=font, fill=fill_color) draw.text((xpos, line2), str(trees), font=font, fill=fill_color) image.save(outfile)