Modify ↓
Opened 19 years ago
Closed 13 years ago
#1199 closed defect (fixed)
Trivial typo
| Reported by: | Michael Renzmann | Owned by: | Noah Kantrowitz |
|---|---|---|---|
| Priority: | low | Component: | CacheSystemPlugin |
| Severity: | trivial | Keywords: | |
| Cc: | Trac Release: | 0.10 |
Description
Spotted a small typo:
Index: cachesystem/filter.py
===================================================================
--- cachesystem/filter.py (revision 1943)
+++ cachesystem/filter.py (working copy)
@@ -39,7 +39,7 @@
req.args.get('version') is None:
page = self.client.get(req.path_info)
if page is not None:
- self.log.debug('CacheFilte: Cache hit on %s', req.path_info)
+ self.log.debug('CacheFilter: Cache hit on %s', req.path_info)
req.__CACHED_PAGE = page
return self
else:
:)
Attachments (0)
Note: See
TracTickets for help on using
tickets.



(In [11850]) Fixes #1199: Fixed trivial typo. Thanks to otaku42 for spotting :)