Fix some absolute imports
This commit is contained in:
parent
53ea677bad
commit
ee56589468
2 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@ Usage
|
|||
using pygments’s <language> lexer.
|
||||
"""
|
||||
|
||||
from plugin import BasePlugin
|
||||
from poezio.plugin import BasePlugin
|
||||
|
||||
from pygments import highlight
|
||||
from pygments.lexers import get_lexer_by_name
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue