mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
minimaws: python 2 is more fussy about generator function distinction (nw)
This commit is contained in:
parent
85376ad4df
commit
fcbc60c183
1 changed files with 6 additions and 3 deletions
|
@ -438,9 +438,12 @@ class RomIdentHandler(QueryPageHandler):
|
|||
return self.error_page(405)
|
||||
else:
|
||||
self.start_response('200 OK', [('Content-type', 'text/html; chearset=utf-8'), ('Cache-Control', 'public, max-age=3600')])
|
||||
yield htmltmpl.ROMIDENT_PAGE.substitute(
|
||||
app=self.js_escape(cgi.escape(self.application_uri, True)),
|
||||
assets=self.js_escape(cgi.escape(urlparse.urljoin(self.application_uri, 'static'), True))).encode('utf-8')
|
||||
return self.form_page()
|
||||
|
||||
def form_page(self):
|
||||
yield htmltmpl.ROMIDENT_PAGE.substitute(
|
||||
app=self.js_escape(cgi.escape(self.application_uri, True)),
|
||||
assets=self.js_escape(cgi.escape(urlparse.urljoin(self.application_uri, 'static'), True))).encode('utf-8')
|
||||
|
||||
|
||||
class BiosRpcHandler(MachineRpcHandlerBase):
|
||||
|
|
Loading…
Reference in a new issue