Skip to content

Commit

Permalink
Fix packaging error in 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
durera committed Jun 24, 2015
1 parent fc1dff4 commit b0b82b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions samples/helloWorld/helloworld.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import time
import sys
import pprint
from uuid import getnode as get_mac
import uuid


try:
Expand All @@ -39,7 +39,7 @@ def myAppEventCallback(event):

organization = "quickstart"
deviceType = "helloWorldDevice"
deviceId = str(hex(int(get_mac())))[2:]
deviceId = str(uuid.uuid4())
appId = deviceId + "_receiver"
authMethod = None
authToken = None
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

setup(
name='ibmiotf',
version="0.1.0",
version="0.1.1",
author='David Parker',
author_email='[email protected]',
package_dir={'': 'src'},
packages=['ibmiotf'],
packages=['ibmiotf', 'ibmiotf.codecs'],
package_data={'ibmiotf': ['*.pem']},
url='https://github.com/ibm-messaging/iot-python',
license=open('LICENSE').read(),
Expand Down

0 comments on commit b0b82b1

Please sign in to comment.