Check-in [f69b9ce181]
Overview
Comment: | Missing Exception capture for error log. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f69b9ce1814073c9ef7d614daa3f5778 |
User & Date: | mario on 2015-04-26 22:21:29 |
Other Links: | manifest | tags |
Context
2015-04-26
| ||
22:21 | Embed base_url for extraction. check-in: c4d0f73dea user: mario tags: trunk | |
22:21 | Missing Exception capture for error log. check-in: f69b9ce181 user: mario tags: trunk | |
22:21 | Fixed gtk.main_iteration() extraneous parameter in gui_startup. check-in: 748d2aaed8 user: mario tags: trunk | |
Changes
Modified channels/search.py from [21f830ba0a] to [c92aa1faa4].
︙ | ︙ | |||
104 105 106 107 108 109 110 | self.main.status("Server searching: " + cn.module) log.PROC("has_search:", cn.module) try: add = cn.update_streams(cat=None, search=self.q) for row in add: row["genre"] = cn.meta["title"] + " " + row.get("genre", "") entries += add | | | 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | self.main.status("Server searching: " + cn.module) log.PROC("has_search:", cn.module) try: add = cn.update_streams(cat=None, search=self.q) for row in add: row["genre"] = cn.meta["title"] + " " + row.get("genre", "") entries += add except Exception as e: log.WARN("server_search: update_streams error in {}:".format(cn.module), e) continue #main.status(main, 1.0 * i / 15) uikit.do(self.show_results, entries) # search text edited in text entry box |
︙ | ︙ |