Check-in [d10f61093f]
Overview
| Comment: | Remove stray `print` statement |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
d10f61093f1195f9e7db2338367268a5 |
| User & Date: | mario on 2015-05-17 19:13:12 |
| Other Links: | manifest | tags |
Context
|
2015-05-17
| ||
| 19:13 | Adapt config options (color, and type: int) check-in: eb460acb8f user: mario tags: trunk | |
| 19:13 | Remove stray `print` statement check-in: d10f61093f user: mario tags: trunk | |
| 19:12 | Typecast plugin options on initialization. Use SpinButton for `int` options instead of text label. check-in: cdafbe23ce user: mario tags: trunk | |
Changes
Modified channels/favicon.py from [8987f1daae] to [214b0ad098].
| ︙ | ︙ | |||
126 127 128 129 130 131 132 |
continue
# Ignore existing ["favicon"] filename
if row.get("favicon") and False:
pass
# Cache image filename: have or can't have
favicon_fn = row_to_fn(row)
| < | 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
continue
# Ignore existing ["favicon"] filename
if row.get("favicon") and False:
pass
# Cache image filename: have or can't have
favicon_fn = row_to_fn(row)
if not favicon_fn:
continue
try:
# Image already exists
if os.path.exists(favicon_fn):
if not fresh_homepage:
|
| ︙ | ︙ |