[FIX] openerp.wsgi: typo (unbound variable).
authorVo Minh Thu <vmt@openerp.com>
Fri, 6 Jan 2012 09:20:36 +0000 (10:20 +0100)
committerVo Minh Thu <vmt@openerp.com>
Fri, 6 Jan 2012 09:20:36 +0000 (10:20 +0100)
lp bug: https://launchpad.net/bugs/906115 fixed

bzr revid: vmt@openerp.com-20120106092036-8slw0rhgudgphlau

openerp/wsgi.py

index be7d2bf..bb8cfc9 100644 (file)
@@ -240,9 +240,9 @@ def return_options(environ, start_response):
     # Microsoft specific header, see
     # http://www.ibm.com/developerworks/rational/library/2089.html
     if 'Microsoft' in environ.get('User-Agent', ''):
-        option = [('MS-Author-Via', 'DAV')]
+        options = [('MS-Author-Via', 'DAV')]
     else:
-        option = []
+        options = []
     options += [('DAV', '1 2'), ('Allow', 'GET HEAD PROPFIND OPTIONS REPORT')]
     start_response("200 OK", [('Content-Length', str(0))] + options)
     return []