summaryrefslogtreecommitdiff
path: root/devel/py-robotframework-ride/files/patch-src_robotide_publish_publisher.py
blob: aabc9aa91ef5560822a339bff5ac62f61374c551 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- src/robotide/publish/publisher.py.orig	2019-06-28 07:27:57 UTC
+++ src/robotide/publish/publisher.py
@@ -18,10 +18,10 @@ if PY3:
     from robotide.utils import basestring, unicode
 
 try:
-    from pubsub import Publisher
+    from wx.lib.pubsub import Publisher
     WxPublisher = Publisher()
 except ImportError:
-    from pubsub import pub
+    from wx.lib.pubsub import pub
     WxPublisher = pub.getDefaultPublisher()