diff options
author | Dmitry Moiseev <m0sia@m0sia.ru> | 2013-12-10 23:40:08 +0600 |
---|---|---|
committer | Dmitry Moiseev <m0sia@m0sia.ru> | 2013-12-10 23:40:08 +0600 |
commit | 4325ee398097af85cd5660e2150472acc26c6ef0 (patch) | |
tree | f3ce91bf7e712ce360667ff8fe9d17b401a0e9a2 /ParrotZikTray | |
parent | 606e37ec24713cbf97de0e956ad05830802cbb3a (diff) | |
download | pyParrotZikTCP-4325ee398097af85cd5660e2150472acc26c6ef0.tar.xz pyParrotZikTCP-4325ee398097af85cd5660e2150472acc26c6ef0.zip |
Fixed bug: failed to find zik mac in registry; Minor version change
Diffstat (limited to '')
-rwxr-xr-x | ParrotZikTray | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ParrotZikTray b/ParrotZikTray index b3ea9b2..571a76e 100755 --- a/ParrotZikTray +++ b/ParrotZikTray @@ -118,8 +118,7 @@ class ParrotZikIndicator: res = self.p.findall(mac) if len(res)>0: return res[0] - else: - return '' + except EnvironmentError: break |