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