Skip to content
Snippets Groups Projects
Commit 93e3a1f3 authored by Vo Minh Thu's avatar Vo Minh Thu
Browse files

[FIX] netsvc: revert introduction of cgitb

(was done at revno 3452, revision-id vmt@openerp.com-20110609073416-ml22a1vhtizl3z71)

lp bug: https://launchpad.net/bugs/797690 fixed

bzr revid: vmt@openerp.com-20110623143651-v1x7obfnj48khsdj
parent ba236e27
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,6 @@
#
##############################################################################
import cgitb
import errno
import heapq
import logging
......@@ -440,7 +439,7 @@ class OpenERPDispatcher:
except Exception, e:
self.log('exception', tools.exception_to_unicode(e))
tb = getattr(e, 'traceback', sys.exc_info())
tb_s = cgitb.text(tb)
tb_s = "".join(traceback.format_exception(*tb))
if tools.config['debug_mode'] and isinstance(tb, types.TracebackType):
import pdb
pdb.post_mortem(tb[2])
......
......@@ -89,7 +89,7 @@ if os.name == 'nt':
"pydot", "asyncore","asynchat", "reportlab", "vobject",
"HTMLParser", "select", "mako", "poplib",
"imaplib", "smtplib", "email", "yaml", "DAV",
"uuid", "commands", "openerp", # TODO is it necessary to include cgitb?
"uuid", "commands", "openerp",
],
"excludes" : ["Tkconstants","Tkinter","tcl"],
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment