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
print(f"{error} An error occurred while uploading the file {colored(file_name, 'light_blue')} to {colored(site, 'yellow')}! Please report this. Exception: {colored(exception_str, 'red')}")
255
-
error_str=f"An error occurred while uploading the file {file_name} to {site}! Please report this. Exception: {exception_str}"
256
-
Logger.log_event(error_str, extra)
255
+
ifsitein ["Transfer", "Keep"]:
256
+
print(f"{error}{colored(site, 'yellow')} fucked up again while uploading the file {colored(file_name, 'light_blue')}. Don't Report this! Its a known issue they need to fix.")
257
+
else:
258
+
print(f"{error} An error occurred while uploading the file {colored(file_name, 'light_blue')} to {colored(site, 'yellow')}! Please report this. Exception: {colored(exception_str, 'red')}")
259
+
error_str=f"An error occurred while uploading the file {file_name} to {site}! Please report this. Exception: {exception_str}"
260
+
Logger.log_event(error_str, extra)
257
261
258
262
elifstatus=="size_error":
259
263
print(f"{error} File size of {colored(file_name, 'light_blue')} to big for {colored(site, 'yellow')}! Compress it to fit the max size of {colored(size_limit, 'yellow')}")
0 commit comments