You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a diff file in a string in memory, and I tried to do unidiff.PatchSet(diff_contents) but it failed. After investigating I realized that I need to do unidiff.PatchSet(diff_contents.readlines()) to make it work. It'll be nice if the readlines call wouldn't be needed.
The text was updated successfully, but these errors were encountered:
I have a diff file in a string in memory, and I tried to do
unidiff.PatchSet(diff_contents)
but it failed. After investigating I realized that I need to dounidiff.PatchSet(diff_contents.readlines())
to make it work. It'll be nice if thereadlines
call wouldn't be needed.The text was updated successfully, but these errors were encountered: