diff --git a/src/python/CRABClient/Commands/submit.py b/src/python/CRABClient/Commands/submit.py index fcbdc51b..a6fcfbb4 100644 --- a/src/python/CRABClient/Commands/submit.py +++ b/src/python/CRABClient/Commands/submit.py @@ -22,7 +22,7 @@ from CRABClient.ClientUtilities import getJobTypes, createCache, addPlugin, server_info, colors,\ setSubmitParserOptions, validateSubmitOptions, checkStatusLoop, execute_command -from ServerUtilities import MAX_MEMORY_PER_CORE, MAX_MEMORY_SINGLE_CORE, downloadFromS3 +from ServerUtilities import MAX_MEMORY_PER_CORE, MAX_MEMORY_SINGLE_CORE, downloadFromS3, FEEDBACKMAIL class submit(SubCommand): """ @@ -335,7 +335,7 @@ def validateConfig(self): if hasattr(self.configuration.General, 'failureLimit'): msg = "You have specified deprecated parameter 'failureLimit' which will be removed in the near future." - msg += "\nIf you really need it write a mail to hn-cms-computingTools explaining your use case." + msg += "\nIf you really need it write a mail to %s explaining your use case." % FEEDBACKMAIL self.logger.warning("%sWARNING%s: %s" % (colors.RED, colors.NORMAL, msg)) return True, "Valid configuration"