comparison sat_pubsub/__init__.py @ 313:e8e1ca94fd8c

removed reference to sat.tmp.delay as it is not used anymore
author Goffi <goffi@goffi.org>
date Sun, 03 Jan 2016 18:33:20 +0100
parents 5d7c3787672e
children 6ee61218a33f
comparison
equal deleted inserted replaced
312:5d7c3787672e 313:e8e1ca94fd8c
56 56
57 __version__ = '0.2.0' 57 __version__ = '0.2.0'
58 58
59 # TODO: remove this when RSM and MAM are in wokkel 59 # TODO: remove this when RSM and MAM are in wokkel
60 import wokkel 60 import wokkel
61 from wokkel import pubsub, delay 61 from sat.tmp.wokkel import pubsub as tmp_pubsub, rsm as tmp_rsm, mam as tmp_mam
62 from sat.tmp.wokkel import delay as tmp_delay, pubsub as tmp_pubsub, rsm as tmp_rsm, mam as tmp_mam
63 wokkel.delay = tmp_delay
64 wokkel.pubsub = tmp_pubsub 62 wokkel.pubsub = tmp_pubsub
65 wokkel.rsm = tmp_rsm 63 wokkel.rsm = tmp_rsm
66 wokkel.mam = tmp_mam 64 wokkel.mam = tmp_mam