summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ryu/app/gui_topology/gui_topology.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/app/gui_topology/gui_topology.py b/ryu/app/gui_topology/gui_topology.py
index ed4857a5..cbac4d8f 100644
--- a/ryu/app/gui_topology/gui_topology.py
+++ b/ryu/app/gui_topology/gui_topology.py
@@ -56,7 +56,7 @@ class GUIServerController(ControllerBase):
path = "%s/html/" % PATH
self.static_app = DirectoryApp(path)
- @route('topology', '/{filename:.*}')
+ @route('topology', '/{filename:[^/]*}')
def static_handler(self, req, **kwargs):
if kwargs['filename']:
req.path_info = kwargs['filename']