Fixed file close for source code text
This commit is contained in:
parent
7b5e689728
commit
b7d3235e80
@ -27,9 +27,8 @@ class MyEffect(inkex.Effect):
|
|||||||
for path in matched_files:
|
for path in matched_files:
|
||||||
file = open(path)
|
file = open(path)
|
||||||
for word in file.read().split():
|
for word in file.read().split():
|
||||||
file.close()
|
|
||||||
yield word
|
yield word
|
||||||
|
file.close()
|
||||||
def add_text(self, node):
|
def add_text(self, node):
|
||||||
#Add the text to the node
|
#Add the text to the node
|
||||||
word_generator = self.text_generation()
|
word_generator = self.text_generation()
|
||||||
@ -69,4 +68,4 @@ class MyEffect(inkex.Effect):
|
|||||||
rect=etree.SubElement(flowRegion,inkex.addNS('rect','svg'),rattribs)
|
rect=etree.SubElement(flowRegion,inkex.addNS('rect','svg'),rattribs)
|
||||||
self.add_text(flowRoot)
|
self.add_text(flowRoot)
|
||||||
|
|
||||||
MyEffect().run()
|
MyEffect().run()
|
||||||
|
Reference in New Issue
Block a user