diff sat_pubsub/__init__.py @ 281:30895c49ebd2

fixes the imports from sat.tmp
author souliane <souliane@mailoo.org>
date Wed, 14 Jan 2015 10:43:27 +0100
parents e749401be529
children 002c59dbc23f
line wrap: on
line diff
--- a/sat_pubsub/__init__.py	Fri Jan 09 10:57:10 2015 +0100
+++ b/sat_pubsub/__init__.py	Wed Jan 14 10:43:27 2015 +0100
@@ -58,10 +58,10 @@
 
 __version__ = '0.1.0D'
 
-
+# TODO: remove this when RSM and MAM are in wokkel
 import wokkel
-from sat.tmp.wokkel import delay, pubsub, rsm
-
-wokkel.delay = delay
-wokkel.pubsub = pubsub
-wokkel.rsm = rsm
+from sat.tmp.wokkel import delay as tmp_delay, pubsub as tmp_pubsub, rsm as tmp_rsm, mam as tmp_mam
+wokkel.delay = tmp_delay
+wokkel.pubsub = tmp_pubsub
+wokkel.rsm = tmp_rsm
+wokkel.mam = tmp_mam