diff options
author | Marek Siarkowicz <mareksiarkowicz@gmail.com> | 2015-06-12 19:42:41 +0200 |
---|---|---|
committer | Marek Siarkowicz <mareksiarkowicz@gmail.com> | 2015-06-12 20:12:55 +0200 |
commit | 566a27ff40c9478b2fd005890e39705082aceb9c (patch) | |
tree | 20459350d4bc060dc118fea0810fdb5ca409a3ad | |
parent | 3093abbcd7d08680bf39ab2e9d404faecb433965 (diff) | |
download | pyParrotZikTCP-566a27ff40c9478b2fd005890e39705082aceb9c.tar.xz pyParrotZikTCP-566a27ff40c9478b2fd005890e39705082aceb9c.zip |
Fix imports.
-rwxr-xr-x | ParrotZikTray | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ParrotZikTray b/ParrotZikTray index 1e32e23..4518bc9 100755 --- a/ParrotZikTray +++ b/ParrotZikTray @@ -1,8 +1,11 @@ #!/usr/bin/env python +import gtk import ParrotZik import BluetoothPairedDevices -from SysIndicator import * +from SysIndicator import MenuItem +from SysIndicator import UniversalMenu +from SysIndicator import SysIndicator REFRESH_FREQUENCY = 1000 RECONNECT_FREQUENCY = 5000 |