Fix translations for collections and drop useless try.
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Sat, 27 Apr 2013 12:52:08 +0000 (14:52 +0200)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Sat, 27 Apr 2013 13:08:07 +0000 (15:08 +0200)
commit2041ceae1ffd29630988c47fc766a1b9dcf9bbf7
treee9eaf88e658e91ac9164e21be8494fbca4374602
parent90e7fc673878d4eb68db41ae49c47fb543a35a87
Fix translations for collections and drop useless try.

Don't do:  _("With some value: %s" % value)
Please do: _("WIth some value: %s") % value

Fixed for collection messages.

Also removed a
  try:
    some_code.
  except Exception as e:
    raise

No point in doing that.

Fixing the indentation of some_code comes in an extra
commit, because changing indentation is annoying enough
alone, so don't mix it with other changes.
mediagoblin/submit/views.py
mediagoblin/user_pages/views.py