Remove exclamation mark for bookmark messages

This commit is contained in:
Florian Bruhin 2017-04-16 13:08:15 +02:00
parent 842c2d297e
commit 2d45257dcc

View File

@ -1233,7 +1233,7 @@ class CommandDispatcher:
except urlmarks.Error as e: except urlmarks.Error as e:
raise cmdexc.CommandError(str(e)) raise cmdexc.CommandError(str(e))
else: else:
msg = "Bookmarked {}!" if was_added else "Removed bookmark {}!" msg = "Bookmarked {}" if was_added else "Removed bookmark {}"
message.info(msg.format(url.toDisplayString())) message.info(msg.format(url.toDisplayString()))
@cmdutils.register(instance='command-dispatcher', scope='window', @cmdutils.register(instance='command-dispatcher', scope='window',