Use absolute imports on all plugins

This is necessary because Gajim is with 0.16.11 a python package
This commit is contained in:
Philipp Hörist
2017-07-17 01:42:50 +02:00
parent 507bf9a933
commit 9ce1c5b961
67 changed files with 451 additions and 452 deletions
+3 -3
View File
@@ -29,9 +29,9 @@ import sys
from gi.repository import Gtk
from gi.repository import Gdk
from plugins import GajimPlugin
from plugins.helpers import log, log_calls
from plugins.gui import GajimPluginConfigDialog
from gajim.plugins import GajimPlugin
from gajim.plugins.helpers import log, log_calls
from gajim.plugins.gui import GajimPluginConfigDialog
class LengthNotifierPlugin(GajimPlugin):
+2 -2
View File
@@ -1,8 +1,8 @@
[info]
name: Message Length Notifier
short_name: length_notifier
version: 0.2
version: 0.3
description: Highlights message entry field in chat window when given length of message is exceeded.
authors = Mateusz Biliński <mateusz@bilinski.it>
homepage = http://trac-plugins.gajim.org/wiki/LengthNotifierPlugin
min_gajim_version: 0.16.10
min_gajim_version: 0.16.11