From 4fc7ce1a11d8ffa211d7456d4146679d7dd8ce23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikkel=20E=20Lepper=C3=B8d?= Date: Wed, 27 Sep 2017 10:44:51 -0700 Subject: [PATCH] fixes #13 --- expipe-plugin-cinpla/expipe_plugin_cinpla/cli_environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expipe-plugin-cinpla/expipe_plugin_cinpla/cli_environment.py b/expipe-plugin-cinpla/expipe_plugin_cinpla/cli_environment.py index b7018eb..65d65df 100644 --- a/expipe-plugin-cinpla/expipe_plugin_cinpla/cli_environment.py +++ b/expipe-plugin-cinpla/expipe_plugin_cinpla/cli_environment.py @@ -82,7 +82,7 @@ def remove(project_id): raise FileExistsError('No settings file found.') if project_id in current_settings: delete = query_yes_no('Are you sure you want to completely remove' + - ' ' + current_settings[project_id]) + ' ' + project_id) if delete: del(current_settings[project_id]) if project_id == current_settings['current']['project_id']: