# HG changeset patch # User Marcin Kuzminski # Date 2018-05-28 15:13:59 # Node ID ca04169f7ad2a7033a4bdb27a3be4476623628db # Parent 1a9efc1b6d6c3996303fa8ac7f0985515ab618b7 svn: fix usage of http exception from webob to pyramid one. Webob exception had an condition that was unfilled for svn causing unexpected 500s. diff --git a/rhodecode/lib/middleware/simplesvn.py b/rhodecode/lib/middleware/simplesvn.py --- a/rhodecode/lib/middleware/simplesvn.py +++ b/rhodecode/lib/middleware/simplesvn.py @@ -24,7 +24,7 @@ import urllib from urlparse import urljoin import requests -from webob.exc import HTTPNotAcceptable +from pyramid.httpexceptions import HTTPNotAcceptable from rhodecode.lib import caches from rhodecode.lib.middleware import simplevcs