Minor changes to return() layout

This commit is contained in:
neersighted 2012-04-01 20:57:00 -07:00
parent 70c41b3038
commit adc9a3c608

View file

@ -58,7 +58,7 @@ def ignore(inp, input=None, notice=None):
else: else:
ignore_target(target) ignore_target(target)
notice("%s has been ignored." % target) notice("%s has been ignored." % target)
return
@hook.command(adminonly=True) @hook.command(adminonly=True)
def unignore(inp, input=None, notice=None): def unignore(inp, input=None, notice=None):
@ -68,8 +68,7 @@ def unignore(inp, input=None, notice=None):
if is_ignored(target): if is_ignored(target):
unignore_target(target) unignore_target(target)
notice("%s has been unignored." % target) notice("%s has been unignored." % target)
return
else: else:
notice("%s is not ignored." % target) notice("%s is not ignored." % target)
return return