Oops, I missed this when resolving merge conflicts

This commit is contained in:
Micah Lee 2019-01-20 16:00:18 -08:00
parent 634b8ecebd
commit b6928a6d0e
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73

View File

@ -124,10 +124,10 @@ class ReceiveModeWeb(object):
try: try:
os.makedirs(receive_mode_dir, 0o700) os.makedirs(receive_mode_dir, 0o700)
except PermissionError: except PermissionError:
self.web.add_request(self.web.REQUEST_ERROR_DOWNLOADS_DIR_CANNOT_CREATE, request.path, { self.web.add_request(self.web.REQUEST_ERROR_DATA_DIR_CANNOT_CREATE, request.path, {
"receive_mode_dir": receive_mode_dir "receive_mode_dir": receive_mode_dir
}) })
print(strings._('error_cannot_create_downloads_dir').format(receive_mode_dir)) print(strings._('error_cannot_create_data_dir').format(receive_mode_dir))
valid = False valid = False
if not valid: if not valid:
flash('Error uploading, please inform the OnionShare user', 'error') flash('Error uploading, please inform the OnionShare user', 'error')