mercurial/hgweb/protocol.py
changeset 34509 e21f274cccea
parent 33821 3c91cc0c5fde
child 34510 c23fa3103925
--- a/mercurial/hgweb/protocol.py	Thu Oct 05 14:18:55 2017 -0700
+++ b/mercurial/hgweb/protocol.py	Thu Oct 05 14:12:51 2017 -0400
@@ -15,6 +15,7 @@
 )
 
 from .. import (
+    error,
     util,
     wireproto,
 )
@@ -199,3 +200,4 @@
         rsp = rsp.message
         req.respond(HTTP_OK, HGERRTYPE, body=rsp)
         return []
+    raise error.ProgrammingError('hgweb.protocol internal failure', rsp)