Change to relative imports

This commit is contained in:
Henri 2020-12-02 21:29:36 +01:00
parent b4868ca0c0
commit 73b8bdf0c8
4 changed files with 6 additions and 6 deletions

View File

@ -26,8 +26,8 @@ __license__ = "AGPL3" # + author has right to release in parallel under differen
__email__ = "towalink.wgfrontend@henrici.name"
import setupenv
import webapp
from . import setupenv
from . import webapp
def main():

View File

@ -5,7 +5,7 @@ import logging
import os
import textwrap
import pwdtools
from . import pwdtools
logger = logging.getLogger(__name__)

View File

@ -10,7 +10,7 @@ import string
import wgconfig
import wgconfig.wgexec as wgexec
import config
from . import config
def is_root():

View File

@ -8,8 +8,8 @@ import os
import random
import string
import pwdtools
import wgcfg
from . import pwdtools
from . import wgcfg
class WebApp():