Minor improvement of string conversion for JsBlock.

This commit is contained in:
Achim D. Brucker 2017-08-28 10:50:52 +01:00
parent c721e6fdbf
commit 9bf0b47f98
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ class JsBlock:
len(self.string_literals)) + "\n"
return (
"***************************************************************\n"
+ "** Type: " + str(self.typ) + "\n" + "** Start: " + str(
+ "** Type: " + str(self.typ.name) + "\n" + "** Start: " + str(
self.start) + "\n" + "** End: " + str(
self.end) + "\n" + str_msg + self.content.strip() + "\n" +
"***************************************************************\n"