summaryrefslogtreecommitdiff
path: root/nxt-python-fantom/nxt/bluesock.py
diff options
context:
space:
mode:
authorTat-Chee Wan (USM)2011-04-30 08:23:54 +0800
committerTat-Chee Wan (USM)2011-04-30 08:23:54 +0800
commit7159d0c9ea305ca1cb766ad783ae95f1b5f30d07 (patch)
tree619f4a10cc2c5b41b9490d127a837410e035a0a0 /nxt-python-fantom/nxt/bluesock.py
parentab18bffaf964904081d435eb9344908536aea515 (diff)
fixed fantomglue import
Diffstat (limited to 'nxt-python-fantom/nxt/bluesock.py')
-rw-r--r--nxt-python-fantom/nxt/bluesock.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/nxt-python-fantom/nxt/bluesock.py b/nxt-python-fantom/nxt/bluesock.py
index b4a2739..99917f2 100644
--- a/nxt-python-fantom/nxt/bluesock.py
+++ b/nxt-python-fantom/nxt/bluesock.py
@@ -13,12 +13,12 @@
# GNU General Public License for more details.
try:
- import bluetooth
+ import fantomglue as bluetooth
except ImportError:
try:
- import lightblueglue as bluetooth
+ import bluetooth
except ImportError:
- import pyfantom as bluetooth
+ import lightblueglue as bluetooth
import os
from .brick import Brick