diff options
author | m0sia <m0sia@m0sia.ru> | 2018-03-21 16:44:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-21 16:44:03 -0500 |
commit | 4ba00c00067be47e0faad2a198cac938e01341d5 (patch) | |
tree | 65b3f99b7805dab2f7bd9cca3b46db749ad5b018 /parrot_zik | |
parent | cabda879dd4bce58d7783d4adb801a7dc212cd49 (diff) | |
download | pyParrotZikTCP-4ba00c00067be47e0faad2a198cac938e01341d5.tar.xz pyParrotZikTCP-4ba00c00067be47e0faad2a198cac938e01341d5.zip |
dbus is only available on linux
Diffstat (limited to 'parrot_zik')
-rw-r--r-- | parrot_zik/bluetooth_paired_devices.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parrot_zik/bluetooth_paired_devices.py b/parrot_zik/bluetooth_paired_devices.py index ba9ac9d..82348a5 100644 --- a/parrot_zik/bluetooth_paired_devices.py +++ b/parrot_zik/bluetooth_paired_devices.py @@ -1,4 +1,3 @@ -import dbus import sys import re from subprocess import Popen, PIPE, STDOUT @@ -10,6 +9,7 @@ if sys.platform == "darwin": import lightblue else: import bluetooth + import dbus if sys.platform == "win32": import _winreg |