##// END OF EJS Templates
remove unnecessary str
Srinivas Reddy Thatiparthy -
Show More
@@ -192,8 +192,7 which already exists. But you must first start the logging process with
192 192 write = self.logfile.write
193 193 if kind=='input':
194 194 if self.timestamp:
195 write(str(time.strftime('# %a, %d %b %Y %H:%M:%S\n',
196 time.localtime())))
195 write(time.strftime('# %a, %d %b %Y %H:%M:%S\n', time.localtime()))
197 196 write(data)
198 197 elif kind=='output' and self.log_output:
199 198 odata = u'\n'.join([u'#[Out]# %s' % s
General Comments 0
You need to be logged in to leave comments. Login now