projects
/
rawdog
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b5b8d7
)
Simplify how bits["refresh"] is written.
author
Adam Sampson
<ats@offog.org>
Sat, 31 Jan 2015 16:35:11 +0000
(16:35 +0000)
committer
Adam Sampson
<ats@offog.org>
Sat, 31 Jan 2015 16:35:11 +0000
(16:35 +0000)
rawdoglib/rawdog.py
patch
|
blob
|
history
diff --git
a/rawdoglib/rawdog.py
b/rawdoglib/rawdog.py
index 15891f3fb1792feeecb8469989691ae18ae1c99e..d866e228bf27503b9cf0751f494ffba60b3e902b 100644
(file)
--- a/
rawdoglib/rawdog.py
+++ b/
rawdoglib/rawdog.py
@@
-1687,7
+1687,7
@@
__feeditems__
refresh = min([config["expireage"]]
+ [feed.period for feed in self.feeds.values()])
- bits["refresh"] =
"""<meta http-equiv="Refresh" """ + 'content="' + str(refresh) + '"' + """>"""
+ bits["refresh"] =
'<meta http-equiv="Refresh" content="' + str(refresh) + '">'
f = StringIO()
self.write_feedlist(f, config)