wolverine2k / crunchy

Automatically exported from code.google.com/p/crunchy
0 stars 0 forks source link

Setting debug to True in CrunchyPlugin causes an exception #254

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
If you set DEBUG=True in "CrunchyPlugin.py" it raises an exception when it
gets to the default handler:

TypeError: cannot concatenate 'str' and 'NoneType' objects

Need to switch the debug line to: 

print("Registering http handler %s" % pattern)

or

print("Registering http handler " + str(pattern))

Original issue reported on code.google.com by myer0...@gmail.com on 26 Oct 2009 at 6:11

GoogleCodeExporter commented 8 years ago
Thank you for this bug report.

Original comment by andre.ro...@gmail.com on 26 Oct 2009 at 8:02

GoogleCodeExporter commented 8 years ago
Fixed in r1408.

Original comment by andre.ro...@gmail.com on 26 Oct 2009 at 8:09