Mercurial > libervia-web
comparison src/twisted/plugins/libervia_server.py @ 474:6700386291f1
server side: fix unicodes issues in options
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 12 Jun 2014 16:27:10 +0200 |
parents | 34ce41e014c4 |
children | 750db9ff8525 |
comparison
equal
deleted
inserted
replaced
473:d1565906f228 | 474:6700386291f1 |
---|---|
89 | 89 |
90 class LiberviaMaker(object): | 90 class LiberviaMaker(object): |
91 implements(IServiceMaker, IPlugin) | 91 implements(IServiceMaker, IPlugin) |
92 | 92 |
93 tapname = C.ASCII_APP_NAME | 93 tapname = C.ASCII_APP_NAME |
94 description = _(u'The web frontend of Salut à Toi') | 94 description = _(u'The web frontend of Salut à Toi').encode('utf-8') |
95 options = Options | 95 options = Options |
96 | 96 |
97 def makeService(self, options): | 97 def makeService(self, options): |
98 return Libervia(**dict(options)) # get rid of the usage.Option overload | 98 return Libervia(**dict(options)) # get rid of the usage.Option overload |
99 | 99 |