Mercurial > libervia-backend
comparison src/plugins/__init__.py @ 1285:ed2c718bfe03
tmp, plugins: fixes the imports fron sat.tmp
author | souliane <souliane@mailoo.org> |
---|---|
date | Wed, 14 Jan 2015 10:44:49 +0100 |
parents | 7d9ff14a2d9d |
children | c7fd121a6180 |
comparison
equal
deleted
inserted
replaced
1284:41ffe2c2dddc | 1285:ed2c718bfe03 |
---|---|
1 # TODO: remove this when RSM and MAM are in wokkel | |
1 import wokkel | 2 import wokkel |
2 from sat.tmp.wokkel import delay, pubsub, rsm, mam | 3 from sat.tmp.wokkel import delay as tmp_delay, pubsub as tmp_pubsub, rsm as tmp_rsm, mam as tmp_mam |
3 | 4 wokkel.delay = tmp_delay |
4 wokkel.delay = delay | 5 wokkel.pubsub = tmp_pubsub |
5 wokkel.pubsub = pubsub | 6 wokkel.rsm = tmp_rsm |
6 wokkel.rsm = rsm | 7 wokkel.mam = tmp_mam |
7 wokkel.mam = mam |