File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
shared-bindings/ipaddress Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1672,6 +1672,10 @@ msgstr ""
1672
1672
msgid "Only edge detection is available on this hardware"
1673
1673
msgstr ""
1674
1674
1675
+ #: shared-bindings/ipaddress/__init__.c
1676
+ msgid "Only int or string supported for ip"
1677
+ msgstr ""
1678
+
1675
1679
#: shared-module/displayio/OnDiskBitmap.c
1676
1680
#, c-format
1677
1681
msgid ""
@@ -1693,10 +1697,6 @@ msgstr ""
1693
1697
msgid "Only one color can be transparent at a time"
1694
1698
msgstr ""
1695
1699
1696
- #: shared-bindings/ipaddress/__init__.c
1697
- msgid "Only raw int or string supported for ip"
1698
- msgstr ""
1699
-
1700
1700
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
1701
1701
msgid "Operation or feature not supported"
1702
1702
msgstr ""
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ STATIC mp_obj_t ipaddress_ip_address(mp_obj_t ip_in) {
91
91
mp_raise_ValueError (translate ("Not a valid IP string" ));
92
92
}
93
93
} else {
94
- mp_raise_ValueError (translate ("Only raw int or string supported for ip" ));
94
+ mp_raise_ValueError (translate ("Only int or string supported for ip" ));
95
95
}
96
96
97
97
return common_hal_ipaddress_new_ipv4address (value );
You can’t perform that action at this time.
0 commit comments