aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r/__init__.py')
-rw-r--r--pyaggr3g470r/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/__init__.py b/pyaggr3g470r/__init__.py
index 46498679..9ba33849 100644
--- a/pyaggr3g470r/__init__.py
+++ b/pyaggr3g470r/__init__.py
@@ -22,7 +22,7 @@ ALLOWED_EXTENSIONS = set(['xml', 'opml'])
def allowed_file(filename):
"""
- Check if the uploaded WSW file is allowed.
+ Check if the uploaded file is allowed.
"""
return '.' in filename and \
filename.rsplit('.', 1)[1] in ALLOWED_EXTENSIONS
bgstack15