Commit bd184217293b8fc555345cf42fa8874194f4afe1
1 parent
44c0fb2b
Exists in
master
and in
39 other branches
Fixing wrong view name
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/super_archives/models.py
... | ... | @@ -44,7 +44,7 @@ class EmailAddress(models.Model): |
44 | 44 | if self.user: |
45 | 45 | return reverse('user_profile', args=[self.user.username]) |
46 | 46 | else: |
47 | - return reverse('colab.views.userprofile.by_emailhash', | |
47 | + return reverse('colab.deprecated.views.userprofile.by_emailhash', | |
48 | 48 | args=[self.md5]) |
49 | 49 | |
50 | 50 | def __unicode__(self): | ... | ... |