Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <forenjunkie@chello.at>2017-07-17 02:42:50 +0300
committerPhilipp Hörist <forenjunkie@chello.at>2017-08-18 22:35:29 +0300
commit9ce1c5b96120b412e5fbbe25bb03b9ab245a4221 (patch)
tree3884f1ad0ec35b224cc57f467c2e24d2776e86c8 /now_listen
parent507bf9a93394d9db3fddd696183b3b8920ff92d8 (diff)
Use absolute imports on all pluginsomemo_2.3.6
This is necessary because Gajim is with 0.16.11 a python package
Diffstat (limited to 'now_listen')
-rw-r--r--now_listen/manifest.ini4
-rw-r--r--now_listen/now_listen.py12
2 files changed, 8 insertions, 8 deletions
diff --git a/now_listen/manifest.ini b/now_listen/manifest.ini
index 61457e6..7c81dcb 100644
--- a/now_listen/manifest.ini
+++ b/now_listen/manifest.ini
@@ -1,8 +1,8 @@
[info]
name: Now Listen
short_name: now-listen
-version: 0.2.3
+version: 0.2.4
description: Copy tune info to conversation input box (alt + n) at cursor position
authors = Denis Fomin <fominde@gmail.com>
homepage = https://dev.gajim.org/gajim/gajim-plugins/wikis/NowListenPlugin
-min_gajim_version: 0.16.10
+min_gajim_version: 0.16.11
diff --git a/now_listen/now_listen.py b/now_listen/now_listen.py
index a62224a..fd4df9a 100644
--- a/now_listen/now_listen.py
+++ b/now_listen/now_listen.py
@@ -4,14 +4,14 @@ from gi.repository import Gtk
from gi.repository import Gdk
import os
-from plugins import GajimPlugin
-from plugins.helpers import log_calls
-from plugins.gui import GajimPluginConfigDialog
-from plugins.gajimplugin import GajimPluginException
-from common import dbus_support
+from gajim.plugins import GajimPlugin
+from gajim.plugins.helpers import log_calls
+from gajim.plugins.gui import GajimPluginConfigDialog
+from gajim.plugins.gajimplugin import GajimPluginException
+from gajim.common import dbus_support
if dbus_support.supported:
- from music_track_listener import MusicTrackListener
+ from gajim.music_track_listener import MusicTrackListener
class NowListenPlugin(GajimPlugin):