~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: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:
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