whitespacing.... :)

This commit is contained in:
Johannes Findeisen 2013-06-18 02:58:40 +02:00
commit 883e59a3d1
22 changed files with 66 additions and 109 deletions

View file

@ -4,6 +4,7 @@ The xmpp task.
from task import Task
class XmppTask(Task):
def __init__(self, **kwargs):
if not "type" in kwargs:
@ -12,13 +13,10 @@ class XmppTask(Task):
raise Exception("typeDict " + str(kwargs) + " has nor arguments!")
self.set_task_type(kwargs["type"])
self.recipient = kwargs["args"]["rcpt"]
def execute_task(self, msg):
pass
def creator(**taskDict):
return XmppTask(taskDict)