Clean the package layout

This commit is contained in:
Valentin Niess
2020-03-29 16:07:53 +02:00
parent f18d9d5537
commit f8a4c10644
15 changed files with 25 additions and 22 deletions

View File

@@ -4,7 +4,7 @@ import logging
import os
import sys
from .deps import fetch_all
from .utils.deps import fetch_all
__all__ = ['main']
@@ -50,7 +50,7 @@ def main():
sys.exit(0)
# Call the AppImage builder
builder = import_module('.' + args.builder, package=__package__)
builder = import_module('.builders.' + args.builder, package=__package__)
builder.build(*builder._unpack_args(args))