Skip to content
Snippets Groups Projects
Commit 7a29be23 authored by jkerdreu's avatar jkerdreu
Browse files

Fix UUID in config



git-svn-id: https://redmine.imt-atlantique.fr/svn/xaal/code/Python/branches/0.7@2465 b32b6428-25c9-4566-ad07-03861ab6144f
parent 85279776
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ def register_device(engine):
push_bullets.append(Pushbullet(k))
info = "%s@%s" % (PACKAGE_NAME,platform.node())
dev = Device("notification.pushbullet")
dev.address = cfg['config']['addr']
dev.address = tools.get_uuid(cfg['config']['addr'])
dev.product_id = "Pushbullet Notification device"
dev.vendor_id = "IHSEV TEAM"
dev.version = 0.1
......
......@@ -3,7 +3,7 @@ import sys
# try to find the same address
cfg = tools.load_cfg_or_die('xaal.pushbullet')
target = cfg['config']['addr']
target = tools.get_uuid(cfg['config']['addr'])
dev = Device("test.basic",tools.get_random_uuid())
eng = Engine()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment