From 087db54a696665051d59c76e2f1aada058c29e0e Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Tue, 27 Sep 2016 04:35:06 -0400 Subject: [PATCH] Fixed a bug where the wrong path seperator was being used. --- src/apex/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apex/cli.py b/src/apex/cli.py index 95828e4..501cfa4 100644 --- a/src/apex/cli.py +++ b/src/apex/cli.py @@ -60,7 +60,7 @@ def find_config(config_paths, verbose): rc_file = '.apexrc' cur_path = os.path.join(os.curdir, config_file) home_path = os.path.join(os.path.expanduser('~'), rc_file) - etc_path = os.pathsep + os.path.join('etc', config_file) + etc_path = os.path.sep + os.path.join('etc', config_file) if config_paths is None: if os.name == 'posix': config_paths = [cur_path, home_path, etc_path] -- GitLab