From 0c4523fac193989fd260dc998fd2c0ce5c23270a Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Mon, 2 Aug 2021 19:24:04 -0400 Subject: [PATCH] Remove testing config and rename config ext --- src/webqueue2api/__init__.py | 2 +- webqueue2api_config.config | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 webqueue2api_config.config diff --git a/src/webqueue2api/__init__.py b/src/webqueue2api/__init__.py index 2461467..96c62be 100644 --- a/src/webqueue2api/__init__.py +++ b/src/webqueue2api/__init__.py @@ -4,7 +4,7 @@ from .config import config config_parser = configparser.ConfigParser() -config_file_path = Path.joinpath(Path(sys.executable).parent.parent.parent, "webqueue2api_config.config") +config_file_path = Path.joinpath(Path(sys.executable).parent.parent.parent, "webqueue2api_config.ini") if Path(config_file_path).exists(): config_parser.read(config_file_path) diff --git a/webqueue2api_config.config b/webqueue2api_config.config deleted file mode 100644 index 81d51dc..0000000 --- a/webqueue2api_config.config +++ /dev/null @@ -1,2 +0,0 @@ -[api] -environment = dev \ No newline at end of file