From bac055a6e6c9c5686320f2fe4a83170f65f5adf9 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Nov 10 2015 14:46:53 +0000 Subject: Remove typo, we no longer use '%s' to insert the prefix --- diff --git a/mdapi/__init__.py b/mdapi/__init__.py index 199e64f..4778127 100644 --- a/mdapi/__init__.py +++ b/mdapi/__init__.py @@ -183,7 +183,7 @@ def init(loop): routes = [] prefix = CONFIG.get('PREFIX', '') if prefix: - routes.append(('%s', index)) + routes.append(('', index)) routes.extend([ ('/', index),