diff --git a/themis/importexport/configure.zcml b/themis/importexport/configure.zcml index 1146a64..3d8f5a2 100644 --- a/themis/importexport/configure.zcml +++ b/themis/importexport/configure.zcml @@ -53,4 +53,11 @@ permission="cmf.ManagePortal" /> + + diff --git a/themis/importexport/views.py b/themis/importexport/views.py index 836187e..977701f 100644 --- a/themis/importexport/views.py +++ b/themis/importexport/views.py @@ -104,3 +104,9 @@ class ListCommissions(UtilityView): l.append(object.absolute_url()) self.request.response.setHeader('Content-type', 'application/json') return json.dumps(l) + + +class Pdb(BrowserView): + def __call__(self): + import pdb; pdb.set_trace() +