Changeset 176
- Timestamp:
- 04/05/06 21:03:20 (3 years ago)
- Files:
-
- branches/tim/pyramid/page.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/tim/pyramid/page.py
r175 r176 156 156 ''' 157 157 html = self.renderSynchronously() 158 html = html.decode('utf8') 158 try: 159 html = html.decode('utf8') 160 except: 161 html = html.decode('iso-8859-1') 159 162 # parse the html and replace links 160 163 if self.ctx.relativeurls == True:
