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

« back to all changes in this revision

Viewing changes to bin/ivle-listusers

  • Committer: William Grant
  • Date: 2010-02-23 08:55:42 UTC
  • mto: This revision was merged to the branch mainline in revision 1674.
  • Revision ID: grantw@unimelb.edu.au-20100223085542-r8xw14bxxoraza51
Permit underscores in all names.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
import os
28
28
import getopt
29
29
 
 
30
import ivle.config
30
31
import ivle.database
31
32
 
32
33
# Options processing
56
57
    print "Must run listusers.py as root."
57
58
    sys.exit()
58
59
 
59
 
store = ivle.database.get_store()
 
60
store = ivle.database.get_store(ivle.config.Config())
60
61
users = store.find(ivle.database.User).order_by(ivle.database.User.login)
61
62
 
62
63
for user in users: