##// 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 209 with fname.open('w') as f:
210 210 f.write(src)
211 211 f.flush()
212 return fname
212 return str(fname)
213 213
214 214 @undoc
215 215 def atomic_writing(*args, **kwargs):
General Comments 0
You need to be logged in to leave comments. Login now