Merge "Fixing assignment-from-no-return issue."

This commit is contained in:
Jenkins 2016-04-14 21:39:57 +00:00 committed by Gerrit Code Review
commit 575a91ee30
1 changed files with 4 additions and 2 deletions

View File

@ -60,7 +60,8 @@ def validate_post_plugin_load():
If the configuration is invalid then the method will return an error
message. If all is OK then it will return None.
"""
pass
message = None
return message
def validate_pre_plugin_load():
@ -69,7 +70,8 @@ def validate_pre_plugin_load():
If the configuration is invalid then the method will return an error
message. If all is OK then it will return None.
"""
pass
message = None
return message
class TackerManager(object):