Skip to content

Commit 38b1d53

Browse files
committed
corrected kg to lb conversion
1 parent abfd081 commit 38b1d53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/units.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
["gm", _("gram"), _("grams"), "x * 1", "x * 1"],
161161
# All below convert to/from base
162162
["kg", _("kilogram"), _("kilograms"), "x / 0.001", "x * 0.001"],
163-
["lb", _("pound"), _("pounds"), "x / 0.002205", "x * 0.001"],
163+
["lb", _("pound"), _("pounds"), "x / 0.002205", "x * 0.002205"],
164164
["oz", _("ounce"), _("ounces"), "x / 0.035274", " 0.035274"],
165165
["st", _("stone"), _("stone"), "x / 0.000157473", "x * 0.000157473"],
166166
[

0 commit comments

Comments
 (0)