Doc webdav: fix typo in case of exception.

If user rights are not setup for the user that connects to WebDAV, this
exception will occur and the typo would not help debug the problem.
(still, the user won't see the items at either case)

bzr revid: p_christ@hol.gr-20101014110323-zxj5oha0u96e2l1t
This commit is contained in:
P. Christeas 2010-10-14 14:03:23 +03:00
parent d6b3f279cb
commit 732ca8b5cf
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ class openerp_dav_handler(dav_interface):
result.append( self.urijoin(dbname,d.path) )
except DAV_Error:
raise
except Exception:
except Exception, e:
self.parent.log_error("cannot get_childs: "+ str(e))
raise
finally: