cli: rename to _reconfigure_port, fixes #127
diff --git a/serial/serialcli.py b/serial/serialcli.py
index 9596f62..0727a52 100644
--- a/serial/serialcli.py
+++ b/serial/serialcli.py
@@ -47,7 +47,7 @@
if self._dtr_state is None:
self._dtr_state = True
- self._reconfigurePort()
+ self._reconfigure_port()
self._port_handle.Open()
self.is_open = True
if not self._dsrdtr:
@@ -56,7 +56,7 @@
self._update_rts_state()
self.reset_input_buffer()
- def _reconfigurePort(self):
+ def _reconfigure_port(self):
"""Set communication parameters on opened port."""
if not self._port_handle:
raise SerialException("Can only operate on a valid port handle")