diff options
author | mathieui <mathieui@mathieui.net> | 2016-07-27 19:05:27 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2016-07-27 19:05:27 +0200 |
commit | f6960d09f0e84903954e801397209ef7eb1450ce (patch) | |
tree | ad008d7c44edebd96258a1e2b1c8087070cdf165 /plugins/gpg/__init__.py | |
parent | 15bef8d7521dae6d23e3fa251132395919010208 (diff) | |
download | poezio-f6960d09f0e84903954e801397209ef7eb1450ce.tar.gz poezio-f6960d09f0e84903954e801397209ef7eb1450ce.tar.bz2 poezio-f6960d09f0e84903954e801397209ef7eb1450ce.tar.xz poezio-f6960d09f0e84903954e801397209ef7eb1450ce.zip |
Fix doc building
Broken by the namespace change
Diffstat (limited to 'plugins/gpg/__init__.py')
-rw-r--r-- | plugins/gpg/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/gpg/__init__.py b/plugins/gpg/__init__.py index 3e1f8b0b..128cd1d1 100644 --- a/plugins/gpg/__init__.py +++ b/plugins/gpg/__init__.py @@ -114,10 +114,10 @@ import xml.sax.saxutils import logging log = logging.getLogger(__name__) -from plugin import BasePlugin +from poezio.plugin import BasePlugin -from tabs import ConversationTab -from theming import get_theme +from poezio.tabs import ConversationTab +from poezio.theming import get_theme NS_SIGNED = "jabber:x:signed" NS_ENCRYPTED = "jabber:x:encrypted" |