From 86cc3570525d5f3a9c9b6ec929af7c7d286b8b6d Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Wed, 6 Apr 2011 19:54:11 +0000 Subject: [PATCH] Doesn't handle links to family, yet svn: r17065 --- src/plugins/webreport/NarrativeWeb.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index 386b22581..03e02036f 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -6218,6 +6218,9 @@ class NavWebReport(Report): subdir = "img" elif obj_class == "Repository": subdir = "repo" + elif obj_class == "Family": + # FIXME: no family page in NarWeb + return None else: raise AttributeError("unknown object type '%s'" % obj_class) return self.build_url_fname(handle, subdir, up) + self.ext