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

« back to all changes in this revision

Viewing changes to services/usrmgt-server

  • Committer: William Grant
  • Date: 2009-02-25 23:04:11 UTC
  • Revision ID: grantw@unimelb.edu.au-20090225230411-lbdyl32ir0m3d59b
Make all of the services executable.

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
8
7
import ivle.conf
9
8
import ivle.database
10
9
import ivle.chat
140
139
def dispatch(props):
141
140
    logging.debug(repr(props))
142
141
 
143
 
    store = ivle.database.get_store(ivle.config.Config())
 
142
    store = ivle.database.get_store()
144
143
    action = props.keys()[0]
145
144
    res = actions[action](store, props[action])
146
145