aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/__init__.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-27 11:23:24 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-27 11:23:24 +0200
commitff0d0a2d003b927dded34f3f0f8124bd355aa5f0 (patch)
treed23e6a4371adac0228c9d8ff735172b6cc532380 /pyaggr3g470r/__init__.py
parentBetter to send email without Flask-Mail. (diff)
downloadnewspipe-ff0d0a2d003b927dded34f3f0f8124bd355aa5f0.tar.gz
newspipe-ff0d0a2d003b927dded34f3f0f8124bd355aa5f0.tar.bz2
newspipe-ff0d0a2d003b927dded34f3f0f8124bd355aa5f0.zip
Updated comment.
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