comparison src/plugins/plugin_misc_tarot.py @ 588:beaf6bec2fcd

Remove every old-style class.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 18 Jan 2013 17:55:35 +0100
parents 952322b1d490
children e629371a28d3
comparison
equal deleted inserted replaced
587:952322b1d490 588:beaf6bec2fcd
52 "handler": "yes", 52 "handler": "yes",
53 "description": _("""Implementation of Tarot card game""") 53 "description": _("""Implementation of Tarot card game""")
54 } 54 }
55 55
56 56
57 class Tarot(): 57 class Tarot(object):
58 58
59 def __init__(self, host): 59 def __init__(self, host):
60 info(_("Plugin Tarot initialization")) 60 info(_("Plugin Tarot initialization"))
61 self.host = host 61 self.host = host
62 self.games={} 62 self.games={}