~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/security/views.py

  • Committer: William Grant
  • Date: 2009-12-08 05:26:00 UTC
  • Revision ID: grantw@unimelb.edu.au-20091208052600-j5jpe25vgjtypex9
Fix missing GroupsView when creating a project set.

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
                else:
102
102
                    user = None
103
103
                    try:
 
104
                        # Username is case insensitive
104
105
                        user = authenticate.authenticate(req.config, req.store,
105
 
                                    username.value, password.value)
 
106
                                    username.value.lower(), password.value)
106
107
                    except AuthError, msg:
107
108
                        badlogin = msg
108
109
                    if user is None: