public
Description: A full featured and opinionated blogging solution using Django
Homepage: http://lethain.com/projects/lifeflow/
Clone URL: git://github.com/lethain/lifeflow.git
Showing metadata in LFE file view Now fails more intelligently on unfound files.
lethain (author)
Wed Jul 09 20:41:45 -0700 2008
commit  844a3d6c96070d32730203976ffba0281389362a
tree    371fdd364031d7e1e76966b4e2151500f5dc9c61
parent  2c1b70e757c3dcd074a66b845dd958dc11942fcc
...
340
341
342
 
 
343
344
345
...
340
341
342
343
344
345
346
347
0
@@ -340,6 +340,8 @@ def display_resource(request, id):
0
             opts['type'] = "code"
0
         except ClassNotFound:
0
             opts['type'] = "file"
0
+        except IOError:
0
+            opts['type'] = "file"
0
 
0
     return render_to_response('lifeflow/editor/resource.html',opts,RequestContext(request, {}))
0
 

Comments