From 81096596c71a0ad50124a1519cddc385d14a7df4 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Fri, 17 May 2013 11:07:36 -0400 Subject: [PATCH] style fix - long line --- hy/compiler.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hy/compiler.py b/hy/compiler.py index 60c5335..6a99ece 100644 --- a/hy/compiler.py +++ b/hy/compiler.py @@ -801,8 +801,10 @@ class HyASTCompiler(object): if len(exceptions) == 2: name = exceptions.pop(0) if not isinstance(name, HySymbol): - raise HyTypeError(exceptions, - "Exception storage target name must be a symbol.") + raise HyTypeError( + exceptions, + "Exception storage target name must be a symbol.") + if sys.version_info[0] >= 3: # Python3 features a change where the Exception handler # moved the name from a Name() to a pure Python String type.