1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-19 11:40:31 -04:00
ports/devel/py-robotframework-ride/files/patch-src_robotide_publish_publisher.py
2019-06-30 21:52:10 +00:00

15 lines
432 B
Python

--- 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()