From 3abe7470e7ae2161fca6f97f7e12537dcb39d751 Mon Sep 17 00:00:00 2001 From: Disassembler Date: Thu, 14 Feb 2019 22:13:15 +0100 Subject: [PATCH] Fix typos --- usr/bin/vmmgr | 2 +- usr/lib/python3.6/vmmgr/paths.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/bin/vmmgr b/usr/bin/vmmgr index 9a54f0a..ebb2f2d 100755 --- a/usr/bin/vmmgr +++ b/usr/bin/vmmgr @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- import argparse -from vmmgr import Config, VMMgr +from vmmgr import Config, LXCMgr, VMMgr parser = argparse.ArgumentParser(description='VM application manager') subparsers = parser.add_subparsers() diff --git a/usr/lib/python3.6/vmmgr/paths.py b/usr/lib/python3.6/vmmgr/paths.py index 4911390..ad5f019 100644 --- a/usr/lib/python3.6/vmmgr/paths.py +++ b/usr/lib/python3.6/vmmgr/paths.py @@ -21,5 +21,5 @@ NGINX_DIR = '/etc/nginx/conf.d' REPO_FILE = '/etc/apk/repositories' # URLs -MYUP_URL = 'https://tools.dasm.cz/myip.php' +MYIP_URL = 'https://tools.dasm.cz/myip.php' PING_URL = 'https://tools.dasm.cz/vm-ping.php'