summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Abbi <robin.abbi@downley.net>2020-05-04 15:36:14 +0100
committerRobin Abbi <robin.abbi@downley.net>2020-05-04 15:36:14 +0100
commit4bb757bc865385c5c4e7912fc8789ea680807359 (patch)
treef4ff5e3062bc05b724ec8442b5e942e1b661f8fd
parentf6540b5e350430d8581df30d3996c966a8bf9537 (diff)
downloadroutes-4bb757bc865385c5c4e7912fc8789ea680807359.tar.gz
Remove end comma in arg list.
Failed py34 syntax validation.
-rw-r--r--routes/mapper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/routes/mapper.py b/routes/mapper.py
index 0f7a2e8..3de0cfe 100644
--- a/routes/mapper.py
+++ b/routes/mapper.py
@@ -493,7 +493,7 @@ class Mapper(SubMapperParent):
self.connect(route.name,
routepath,
conditions=route.conditions,
- **route._kargs,
+ **route._kargs
)
def make_route(self, *args, **kargs):