Show More
@@ -252,8 +252,10 b' def _runcatch(req):' | |||
|
252 | 252 | return -1 |
|
253 | 253 | |
|
254 | 254 | def tuplever(v): |
|
255 | return tuple([int(i) for i in v.split('.')]) | |
|
256 | ||
|
255 | try: | |
|
256 | return tuple([int(i) for i in v.split('.')]) | |
|
257 | except ValueError: | |
|
258 | return tuple() | |
|
257 | 259 | |
|
258 | 260 | def aliasargs(fn, givenargs): |
|
259 | 261 | args = getattr(fn, 'args', []) |
General Comments 0
You need to be logged in to leave comments.
Login now