Skip to content

Commit

Permalink
support uasyncio import
Browse files Browse the repository at this point in the history
  • Loading branch information
njouanin committed Nov 14, 2015
1 parent f2c8a19 commit f2b1096
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/pub_script.py
Expand Up @@ -35,7 +35,11 @@

import sys
import logging
import asyncio
try:
import uasyncio as asyncio
except:
raise
import asyncio
import os
from hbmqtt.client import MQTTClient, ConnectException
from hbmqtt.version import get_version
Expand Down

0 comments on commit f2b1096

Please sign in to comment.