Minor correction to LazyNode's use of subpath to avoid NameErrors.
authorStephen Burrows <stephen.r.burrows@gmail.com>
Thu, 3 Feb 2011 03:17:25 +0000 (22:17 -0500)
committerStephen Burrows <stephen.r.burrows@gmail.com>
Thu, 3 Feb 2011 03:17:25 +0000 (22:17 -0500)
middleware.py

index 832bd16..fa30ef6 100644 (file)
@@ -20,11 +20,10 @@ class LazyNode(object):
                        except Node.DoesNotExist:
                                node = None
                        
-                       if subpath is None:
-                               subpath = ""
-                       subpath = "/" + subpath
-                       
                        if node:
+                               if subpath is None:
+                                       subpath = ""
+                               subpath = "/" + subpath
                                node.subpath = subpath
                        
                        request._found_node = node