diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2020-10-07 17:11:32 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2020-10-07 17:11:32 -0700 |
| commit | 9fcf96cb645d726cd4c80b9cce438f1633dab95f (patch) | |
| tree | e6d2463e069635bf6c7f6f223a3cd1ea515129ce /shared-bindings/_bleio/PacketBuffer.c | |
| parent | 66c25667d88db412a90d47cb80bf178e5a6669b2 (diff) | |
Replace _bleio.ConnectionError with the native version
Replace uses of _bleio.ConnectionError with regular ConnectionError
Fixes #3008
Diffstat (limited to 'shared-bindings/_bleio/PacketBuffer.c')
| -rw-r--r-- | shared-bindings/_bleio/PacketBuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/_bleio/PacketBuffer.c b/shared-bindings/_bleio/PacketBuffer.c index 8c8970939..f2a3cbce0 100644 --- a/shared-bindings/_bleio/PacketBuffer.c +++ b/shared-bindings/_bleio/PacketBuffer.c @@ -161,7 +161,7 @@ STATIC mp_obj_t bleio_packet_buffer_write(mp_uint_t n_args, const mp_obj_t *pos_ // gatts write events, which may not have been sent yet. // // IDEAL: - // mp_raise_bleio_ConnectionError(translate("Not connected")); + // mp_raise_ConnectionError(translate("Not connected")); // TEMPORARY: num_bytes_written = 0; } |
