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

« back to all changes in this revision

Viewing changes to bin/ivle-listusers

  • Committer: William Grant
  • Date: 2009-04-28 08:17:26 UTC
  • Revision ID: grantw@unimelb.edu.au-20090428081726-7h8fyjclxtydjma0
No more ivle.conf in ivle.webapp.fileservice...

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: