Skip to content

Commit

Permalink
fixed missing coma syntax error :blushing:
Browse files Browse the repository at this point in the history
  • Loading branch information
notyoyoma committed May 8, 2017
1 parent 7ea1d61 commit eb2c396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmsplugin_remote_form/cms_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def handle_response(self):
"Form Submission Error",
'There was a problem with a form-submission on:\n%s\nView the record:\n%s\nContent:\n%s' % (
self.request.build_absolute_uri(),
self.request.build_absolute_uri(reverse('admin:cmsplugin_remote_form_contactrecord_change', args=(self.saved_record.id,)))
self.request.build_absolute_uri(reverse('admin:cmsplugin_remote_form_contactrecord_change', args=(self.saved_record.id,))),
self.remote_response.content
),
'[email protected]',
Expand Down

0 comments on commit eb2c396

Please sign in to comment.