codegen icon indicating copy to clipboard operation
codegen copied to clipboard

Error on concatenating generator results.

Open apepkuss opened this issue 9 years ago • 0 comments

In some cases, Line 70: return ''.join(generator.result) throws TypeError exception. It should be corrected as return ''.join(str(x) for x in generator.result)

apepkuss avatar Aug 18 '16 04:08 apepkuss