From 280043659da7a03f685e8c9def3896d7bdfc2963 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Tue, 31 Dec 2019 13:24:51 +0100 Subject: [PATCH] s/ucloud/uncloud/g Signed-off-by: Nico Schottelius --- {ucloud_cli => uncloud_cli}/__init__.py | 0 {ucloud_cli => uncloud_cli}/commands/__init__.py | 0 {ucloud_cli => uncloud_cli}/commands/helper.py | 0 {ucloud_cli => uncloud_cli}/commands/host.py | 2 +- {ucloud_cli => uncloud_cli}/commands/image.py | 4 ++-- {ucloud_cli => uncloud_cli}/commands/network.py | 4 ++-- {ucloud_cli => uncloud_cli}/commands/user.py | 4 ++-- {ucloud_cli => uncloud_cli}/commands/vm.py | 4 ++-- {ucloud_cli => uncloud_cli}/config.py | 2 +- {ucloud_cli => uncloud_cli}/helper.py | 0 10 files changed, 10 insertions(+), 10 deletions(-) rename {ucloud_cli => uncloud_cli}/__init__.py (100%) rename {ucloud_cli => uncloud_cli}/commands/__init__.py (100%) rename {ucloud_cli => uncloud_cli}/commands/helper.py (100%) rename {ucloud_cli => uncloud_cli}/commands/host.py (96%) rename {ucloud_cli => uncloud_cli}/commands/image.py (89%) rename {ucloud_cli => uncloud_cli}/commands/network.py (88%) rename {ucloud_cli => uncloud_cli}/commands/user.py (96%) rename {ucloud_cli => uncloud_cli}/commands/vm.py (97%) rename {ucloud_cli => uncloud_cli}/config.py (58%) rename {ucloud_cli => uncloud_cli}/helper.py (100%) diff --git a/ucloud_cli/__init__.py b/uncloud_cli/__init__.py similarity index 100% rename from ucloud_cli/__init__.py rename to uncloud_cli/__init__.py diff --git a/ucloud_cli/commands/__init__.py b/uncloud_cli/commands/__init__.py similarity index 100% rename from ucloud_cli/commands/__init__.py rename to uncloud_cli/commands/__init__.py diff --git a/ucloud_cli/commands/helper.py b/uncloud_cli/commands/helper.py similarity index 100% rename from ucloud_cli/commands/helper.py rename to uncloud_cli/commands/helper.py diff --git a/ucloud_cli/commands/host.py b/uncloud_cli/commands/host.py similarity index 96% rename from ucloud_cli/commands/host.py rename to uncloud_cli/commands/host.py index b3ebea7..c0a04f3 100755 --- a/ucloud_cli/commands/host.py +++ b/uncloud_cli/commands/host.py @@ -2,7 +2,7 @@ import click import requests from .helper import OTPCredentials, load_dump_pretty -from ucloud_cli.config import env_vars +from uncloud_cli.config import env_vars from os.path import join as join_path diff --git a/ucloud_cli/commands/image.py b/uncloud_cli/commands/image.py similarity index 89% rename from ucloud_cli/commands/image.py rename to uncloud_cli/commands/image.py index 7d58104..18e9cf3 100755 --- a/ucloud_cli/commands/image.py +++ b/uncloud_cli/commands/image.py @@ -1,5 +1,5 @@ -from ucloud_cli.commands.helper import load_dump_pretty -from ucloud_cli.config import env_vars +from uncloud_cli.commands.helper import load_dump_pretty +from uncloud_cli.config import env_vars from os.path import join as join_path import click diff --git a/ucloud_cli/commands/network.py b/uncloud_cli/commands/network.py similarity index 88% rename from ucloud_cli/commands/network.py rename to uncloud_cli/commands/network.py index a7aad1d..48cbc0d 100644 --- a/ucloud_cli/commands/network.py +++ b/uncloud_cli/commands/network.py @@ -1,5 +1,5 @@ -from ucloud_cli.commands.helper import load_dump_pretty, OTPCredentials -from ucloud_cli.config import env_vars +from uncloud_cli.commands.helper import load_dump_pretty, OTPCredentials +from uncloud_cli.config import env_vars from os.path import join as join_path import click diff --git a/ucloud_cli/commands/user.py b/uncloud_cli/commands/user.py similarity index 96% rename from ucloud_cli/commands/user.py rename to uncloud_cli/commands/user.py index 024dfe0..d8957be 100755 --- a/ucloud_cli/commands/user.py +++ b/uncloud_cli/commands/user.py @@ -1,5 +1,5 @@ -from ucloud_cli.commands.helper import OTPCredentials, load_dump_pretty -from ucloud_cli.config import env_vars +from uncloud_cli.commands.helper import OTPCredentials, load_dump_pretty +from uncloud_cli.config import env_vars from os.path import join as join_path import click diff --git a/ucloud_cli/commands/vm.py b/uncloud_cli/commands/vm.py similarity index 97% rename from ucloud_cli/commands/vm.py rename to uncloud_cli/commands/vm.py index d0c0bbc..3c5c90c 100755 --- a/ucloud_cli/commands/vm.py +++ b/uncloud_cli/commands/vm.py @@ -3,8 +3,8 @@ import json import requests import subprocess as sp -from ucloud_cli.commands.helper import OTPCredentials, load_dump_pretty -from ucloud_cli.config import env_vars +from uncloud_cli.commands.helper import OTPCredentials, load_dump_pretty +from uncloud_cli.config import env_vars from os.path import join as join_path diff --git a/ucloud_cli/config.py b/uncloud_cli/config.py similarity index 58% rename from ucloud_cli/config.py rename to uncloud_cli/config.py index 188010b..45343d8 100644 --- a/ucloud_cli/config.py +++ b/uncloud_cli/config.py @@ -3,7 +3,7 @@ from os.path import expanduser from decouple import Config, RepositoryEnv try: - env_vars = Config(RepositoryEnv(expanduser("~/ucloud/ucloud-cli.conf"))) + env_vars = Config(RepositoryEnv(expanduser("~/uncloud/uncloud-cli.conf"))) except Exception as err: print(err) sys.exit(1) \ No newline at end of file diff --git a/ucloud_cli/helper.py b/uncloud_cli/helper.py similarity index 100% rename from ucloud_cli/helper.py rename to uncloud_cli/helper.py