From b20aa4609c99ec04104527d09e26220754a4298e Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Tue, 17 Jul 2018 10:17:06 -0700 Subject: [PATCH] Clarify error message from /source/new --- src/pylorax/api/v0.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pylorax/api/v0.py b/src/pylorax/api/v0.py index 8942d502..c6a20da2 100644 --- a/src/pylorax/api/v0.py +++ b/src/pylorax/api/v0.py @@ -1443,7 +1443,7 @@ def v0_api(api): system_sources = get_repo_sources("/etc/yum.repos.d/*.repo") if source["name"] in system_sources: - return jsonify(status=False, errors=["%s is a system source, it cannot be deleted." % source["name"]]), 400 + return jsonify(status=False, errors=["%s is a system source, it cannot be changed." % source["name"]]), 400 try: # Delete it from yum (if it exists) and replace it with the new one