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

« back to all changes in this revision

Viewing changes to services/usrmgt-server

  • Committer: William Grant
  • Date: 2009-04-28 08:35:40 UTC
  • Revision ID: grantw@unimelb.edu.au-20090428083540-0mjpvly46rbt8o8l
Drop another unneeded ivle.conf import, from ivle.webapp.help.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
import sys
5
5
import logging
6
6
 
 
7
import ivle.config
7
8
import ivle.conf
8
9
import ivle.database
9
10
import ivle.chat
139
140
def dispatch(props):
140
141
    logging.debug(repr(props))
141
142
 
142
 
    store = ivle.database.get_store()
 
143
    store = ivle.database.get_store(ivle.config.Config())
143
144
    action = props.keys()[0]
144
145
    res = actions[action](store, props[action])
145
146