##// END OF EJS Templates
Avoid temprary variable assignment by returning value directly from try...
Abhinav Upadhyay -
Show More
@@ -143,10 +143,9 b' def latex_to_png_dvipng(s, wrap):'
143 stdout=devnull, stderr=devnull)
143 stdout=devnull, stderr=devnull)
144
144
145 with open(outfile, "rb") as f:
145 with open(outfile, "rb") as f:
146 bin_data = f.read()
146 return f.read()
147 finally:
147 finally:
148 shutil.rmtree(workdir)
148 shutil.rmtree(workdir)
149 return bin_data
150
149
151
150
152 def kpsewhich(filename):
151 def kpsewhich(filename):
General Comments 0
You need to be logged in to leave comments. Login now