From 74968f9b5a6b03c8885a7273a4574e150ddb8fed Mon Sep 17 00:00:00 2001 From: Michiel Nauta Date: Thu, 24 Mar 2011 21:20:50 +0000 Subject: [PATCH] 4763: Crash because error passes instead of string svn: r16912 --- src/plugins/webreport/NarrativeWeb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index eb4f08e84..cf088f715 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -5340,7 +5340,7 @@ class NavWebReport(Report): self.archive = tarfile.open(self.target_path, "w:gz") except (OSError, IOError), value: ErrorDialog(_("Could not create %s") % self.target_path, - value) + str(value)) return self.progress = ProgressMeter(_("Narrated Web Site Report"), '')