Fix some absolute imports

This commit is contained in:
mathieui 2018-08-09 00:56:28 +02:00
parent 53ea677bad
commit ee56589468
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3
2 changed files with 3 additions and 3 deletions

View file

@ -23,7 +23,7 @@ Usage
using pygmentss <language> lexer.
"""
from plugin import BasePlugin
from poezio.plugin import BasePlugin
from pygments import highlight
from pygments.lexers import get_lexer_by_name

View file

@ -14,8 +14,8 @@ Usage
assuming everyone is using a white background. Black backgrounds matter too!
"""
from plugin import BasePlugin
import xhtml
from poezio.plugin import BasePlugin
from poezio import xhtml
class Plugin(BasePlugin):
def init(self):