Skip to content
Snippets Groups Projects

Superevents

Merged Tanner Prestegard requested to merge superevent into master
Compare and Show latest version
8 files
+ 92
69
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 2
2
@@ -78,5 +78,5 @@ class MainSearchForm(forms.Form):
raise forms.ValidationError({'query': mark_safe(err)})
except Exception as e:
# What could this be and how can we handle it better? XXX
logger.error(e)
raise forms.ValidationError(str(e)+str(type(e)))
logger.error('{t}: {e}'.format(t=str(type(e)), e=str(e)))
raise forms.ValidationError(str(e))
Loading