Skip to content

Commit 07539e3

Browse files
HelioGuilherme66yanne
authored andcommitted
Fixes #1548 by correctly reporting a locked file. Allows to run several RIDE
instances simultaneously.
1 parent 261e0aa commit 07539e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/robotide/log/log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def _remove_old_log_files(self):
5656
try:
5757
os.remove(fname)
5858
except OSError or IOError as e:
59-
sys.stderr.write(e)
59+
sys.stderr.write("{}".format(e))
6060

6161
@property
6262
def _logfile(self):

0 commit comments

Comments
 (0)