mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-25 16:51:54 +00:00
Catch permissions error.
This commit is contained in:
parent
1aef81dccc
commit
bb97b7c862
@ -147,6 +147,8 @@ class SvxForm(forms.Form):
|
||||
if not os.path.exists(newpath):
|
||||
os.makedirs(newpath)
|
||||
fout = open(fname, "wt", encoding='utf8',newline='\n')
|
||||
except PermissionError:
|
||||
return "CANNOT save this file.\nPERMISSIONS incorrectly set on server for this file. Ask a nerd to fix this."
|
||||
|
||||
# javascript seems to insert CRLF on WSL1 whatever you say. So fix that:
|
||||
res = fout.write(rcode.replace("\r",""))
|
||||
|
Loading…
Reference in New Issue
Block a user