diff tincan.py @ 6:a3823da7bb45 draft

Minor tweaks.
author David Barts <n5jrn@me.com>
date Mon, 13 May 2019 15:18:02 -0700
parents 31bb8400e6e3
children 57ec65f527e9
line wrap: on
line diff
--- a/tincan.py	Mon May 13 14:47:04 2019 -0700
+++ b/tincan.py	Mon May 13 15:18:02 2019 -0700
@@ -379,7 +379,7 @@
             self._body = self._tclass(source=self._template.body)
         self._body.prepare()
         # Register this thing with Bottle
-        print("adding route:", self._origin)  # debug
+        print("adding route:", self._origin, '('+','.join(methods)+')')  # debug
         self._app.route(self._origin, methods, self)
 
     def _splitpath(self, unsplit):