(Steve Dougherty)
2013-06-04: Fix ambiguous local identity message. Fix ambiguous local identity message. String was not properly formatted.
diff --git a/infocalypse/wot.py b/infocalypse/wot.py --- a/infocalypse/wot.py +++ b/infocalypse/wot.py @@ -40,7 +40,7 @@ def resolve_own_identity(ui, nickname_pr own_response[key].startswith(nickname_prefix): if nickname is not None: # More than one matched. - ui.warn("Prefix '{0}' is ambiguous.\n", nickname_prefix) + ui.warn("Prefix '{0}' is ambiguous.\n".format(nickname_prefix)) return nickname = own_response[key]