s/ucloud/uncloud/g

Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
This commit is contained in:
Nico Schottelius 2019-12-31 13:24:51 +01:00
parent 267828e85a
commit 280043659d
10 changed files with 10 additions and 10 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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)