aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-06-09 14:14:16 +0200
committercedricbonhomme <devnull@localhost>2010-06-09 14:14:16 +0200
commit16f51b1a915c07c55dd792dfbc90978e30c0b24d (patch)
tree816034aab4bc1fdc173b822594d4690553effc4a
parentIt is now possible to add a feed just with the URL of the web page via the ma... (diff)
downloadnewspipe-16f51b1a915c07c55dd792dfbc90978e30c0b24d.tar.gz
newspipe-16f51b1a915c07c55dd792dfbc90978e30c0b24d.tar.bz2
newspipe-16f51b1a915c07c55dd792dfbc90978e30c0b24d.zip
Typo fix.
-rwxr-xr-xpyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 4145bc99..85b3cee1 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -183,7 +183,7 @@ class Root:
html += """<div class="left inner">\n"""
html += "<h1>Add Feeds</h1>\n"
html += """<form method=get action="/add_feed/"><input type="text" name="url" value="">\n<input
- type="submit" value="OKi"></form>\n"""
+ type="submit" value="OK"></form>\n"""
if self.articles:
html += "<h1>Delete Feeds</h1>\n"
bgstack15