Browse Source

Cleaned the useless comments

Roland Haroutiounian 8 years ago
parent
commit
797795b635
1 changed files with 1 additions and 5 deletions
  1. 1
    5
      plugins/webui/interface/router.py

+ 1
- 5
plugins/webui/interface/router.py View File

27
         if m is not None:
27
         if m is not None:
28
             request.url_args = m.groupdict()
28
             request.url_args = m.groupdict()
29
             return callback
29
             return callback
30
-        '''match = re.search(regex, request.PATH)
31
-        if match is not None:
32
-            request.url_args = match.groups()
33
-            return callback
34
-        '''
30
+
35
     return not_found
31
     return not_found

Loading…
Cancel
Save