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
Personally encountered an issue whereby the CSV file (in my case) is saved even though there were unsuccessful extractions.
This led to a lot of confusion when comparing files. I suggest the author add the following changes:
Personally encountered an issue whereby the CSV file (in my case) is saved even though there were unsuccessful extractions.
This led to a lot of confusion when comparing files. I suggest the author add the following changes:
Original:
@staticmethod
def write_string_to_file(content_string, file_path):
f = open(file_path, "w+");
f.write(content_string);
f.close();
return "";
New version:
@staticmethod
def write_string_to_file(content_string, file_path):
try:
f = open(file_path, "w+");
f.write(content_string);
f.close();
except:
os.remove(file_path)
return "";
The text was updated successfully, but these errors were encountered: