##// END OF EJS Templates
Fix return on temp_pyfile() function in utils
Justin Palmer -
Show More
@@ -209,7 +209,7 b" def temp_pyfile(src, ext='.py'):"
209 with fname.open('w') as f:
209 with fname.open('w') as f:
210 f.write(src)
210 f.write(src)
211 f.flush()
211 f.flush()
212 return fname
212 return str(fname)
213
213
214 @undoc
214 @undoc
215 def atomic_writing(*args, **kwargs):
215 def atomic_writing(*args, **kwargs):
General Comments 0
You need to be logged in to leave comments. Login now