diff --git a/locale/circuitpython.pot b/locale/circuitpython.pot index a52f7b7b7d..eb75d2da6f 100644 --- a/locale/circuitpython.pot +++ b/locale/circuitpython.pot @@ -1672,6 +1672,10 @@ msgstr "" msgid "Only edge detection is available on this hardware" msgstr "" +#: shared-bindings/ipaddress/__init__.c +msgid "Only int or string supported for ip" +msgstr "" + #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -1693,10 +1697,6 @@ msgstr "" msgid "Only one color can be transparent at a time" msgstr "" -#: shared-bindings/ipaddress/__init__.c -msgid "Only raw int or string supported for ip" -msgstr "" - #: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c msgid "Operation or feature not supported" msgstr "" diff --git a/shared-bindings/ipaddress/__init__.c b/shared-bindings/ipaddress/__init__.c index 44e698c1be..314c539c27 100644 --- a/shared-bindings/ipaddress/__init__.c +++ b/shared-bindings/ipaddress/__init__.c @@ -91,7 +91,7 @@ STATIC mp_obj_t ipaddress_ip_address(mp_obj_t ip_in) { mp_raise_ValueError(translate("Not a valid IP string")); } } else { - mp_raise_ValueError(translate("Only raw int or string supported for ip")); + mp_raise_ValueError(translate("Only int or string supported for ip")); } return common_hal_ipaddress_new_ipv4address(value);