Dejan Muhamedagic changed bug 907528
What Removed Added
Assignee lmb@suse.com kgronlund@suse.com

Comment # 2 on bug 907528 from
(In reply to Dejan Muhamedagic from comment #1)
> Could it be that we need here a write/append option for open?
> 
> modules/utils.py:
> 
>  565         open(dest).write(open(src).read())

Seems to work with:

565         open(dest, "a").write(open(src).read())

Can you please check.


You are receiving this mail because: