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

« back to all changes in this revision

Viewing changes to bin/ivle-listusers

  • Committer: Nick Chadwick
  • Date: 2009-03-03 01:48:48 UTC
  • mto: (1099.1.227 exercise-ui)
  • mto: This revision was merged to the branch mainline in revision 1162.
  • Revision ID: chadnickbok@gmail.com-20090303014848-dyurvmtmbneohd7f
Modified the setup script to include '.txt' files.

This allows the automatic inclusion of definitions.txt from the rst
code, as it is needed by all worksheets.

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
31
30
import ivle.database
32
31
 
33
32
# Options processing
57
56
    print "Must run listusers.py as root."
58
57
    sys.exit()
59
58
 
60
 
store = ivle.database.get_store(ivle.config.Config())
 
59
store = ivle.database.get_store()
61
60
users = store.find(ivle.database.User).order_by(ivle.database.User.login)
62
61
 
63
62
for user in users: