(self, entry)
| 192 | pass |
| 193 | |
| 194 | def _get_include_once_filename(self, entry): |
| 195 | entry_fn = util.hash_blob(entry, "md5", 64) |
| 196 | return os.path.join( |
| 197 | self.paths.get_ipath_cur("data"), "urlcache", entry_fn |
| 198 | ) |
| 199 | |
| 200 | def _process_before_attach(self, msg, attached_id): |
| 201 | if not msg.get_filename(): |
no test coverage detected