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

« back to all changes in this revision

Viewing changes to ivle/auth/authenticate.py

  • Committer: William Grant
  • Date: 2009-05-27 06:49:25 UTC
  • Revision ID: grantw@unimelb.edu.au-20090527064925-avjig8opo22t1lur
Drop ivle.conf usage from ivle.pulldown_subj.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
 
73
73
    user = ivle.database.User.get_by_login(store, login)
74
74
 
75
 
    raise Exception(str(get_auth_modules(config)))
76
 
 
77
75
    for modname, m in get_auth_modules(config):
78
76
        # May raise an AuthError - allow to propagate
79
77
        auth_result = m(store, login, password, user)