Skip to content

Commit e12e913

Browse files
committed
Fixed ROS connection issue on IronPython, EventEmitter doesn't link extra params on ipy
1 parent 66f2415 commit e12e913

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ Unreleased
1616

1717
**Fixed**
1818

19+
* Fixed ROS connection issue on IronPython.
20+
1921
**Deprecated**
2022

2123
**Removed**

src/roslibpy/comm/comm_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ class CliRosBridgeClientFactory(EventEmitterMixin):
271271
factor = 2.7182818284590451 # (math.e)
272272

273273
def __init__(self, url, *args, **kwargs):
274-
super(CliRosBridgeClientFactory, self).__init__(*args, **kwargs)
274+
super(CliRosBridgeClientFactory, self).__init__()
275275
self._manager = CliEventLoopManager()
276276
self.manual_disconnect = False
277277
self.proto = None

0 commit comments

Comments
 (0)