From e5680ab8c3faa5c4b10b405c4d845cde20812d88 Mon Sep 17 00:00:00 2001 From: Damon McDougall Date: Fri, 12 Oct 2012 20:18:09 +0200 Subject: [PATCH] Make call to raise py3 compatible --- doc/make.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/make.py b/doc/make.py index 4629e2667d48..8e37ec7f6e36 100755 --- a/doc/make.py +++ b/doc/make.py @@ -102,7 +102,7 @@ def copytree(src, dst, symlinks=False, ignore=None): else: errors.extend((src, dst, str(why))) if errors: - raise Error, errors + raise Error(errors) ### End compatibility block for pre-v2.6 ###