diff --git a/pym/update/utils/cl_update_profile.py b/pym/update/utils/cl_update_profile.py index e9c2765..5899508 100644 --- a/pym/update/utils/cl_update_profile.py +++ b/pym/update/utils/cl_update_profile.py @@ -57,7 +57,7 @@ class ClUpdateProfileAction(Action): 'depend': Tasks.has('migrate_repository') }, {'name': 'check_datavars', - 'error': _("Profile not found in master branch"), + 'error': _("Profile not found in master"), 'condition': lambda Get: not Get('update.cl_update_profile_datavars') }, {'name': 'drop_binhosts', diff --git a/pym/update/variables/update.py b/pym/update/variables/update.py index b103acf..5e38c4e 100644 --- a/pym/update/variables/update.py +++ b/pym/update/variables/update.py @@ -1021,7 +1021,8 @@ class VariableClUpdateProfileUrl(Variable): if (repo_name in self.rep_names and self.Get('cl_action') == self.check_action): raise CriticalError( - _("You need update repositories before change profile")) + _("You need to update the repositories before " + "you change the profile")) git = Git() return git.get_url(profile, "origin") or self.default_url except CriticalError as e: