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

« back to all changes in this revision

Viewing changes to bin/ivle-listusers

  • Committer: David Coles
  • Date: 2010-05-31 15:15:21 UTC
  • Revision ID: coles.david@gmail.com-20100531151521-20e9d7r1gbcziep1
Use innerText || innerContent to get contents of iframe. Should prevent an odd 
bug where the browser creates multiple text nodes that causes us to read 
truncated JSON.

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: