Private
Public Access
1
0

recognizes and refuses kml (through email)

This commit is contained in:
Sander Roosendaal
2017-11-06 17:06:05 +01:00
parent 13f62e465f
commit 9ea2720dc9

View File

@@ -997,6 +997,11 @@ def new_workout_from_file(r, f2,
message = "It looks like this file doesn't contain stroke data."
return (0, message, f2)
if fileformat == 'kml':
os.remove(f2)
message = "KML files are not supported"
return (0, message, f2)
# Some people upload corrupted zip files
if fileformat == 'notgzip':
os.remove(f2)