Skip to content
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.

Commit

Permalink
Merge pull request #98 from jetruby/fix-format
Browse files Browse the repository at this point in the history
Fix interpolation in forms
  • Loading branch information
dcramer committed Jun 7, 2016
2 parents b6e2f70 + e61954c commit bea4155
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry_jira/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def __init__(self, *args, **kwargs):
if len(meta["projects"]) == 0:
super(JIRAIssueForm, self).__init__(*args, **kwargs)
self.errors["__all__"] = [
"Error in JIRA configuration, no projects found for user %s.".format(jira_client.username)
"Error in JIRA configuration, no projects found for user {}.".format(jira_client.username)
]
return

Expand Down

0 comments on commit bea4155

Please sign in to comment.