From 8bf4b0578cf008e9e59e60a7c1b17ecdab9455eb Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Fri, 28 Dec 2012 14:02:02 -0500 Subject: [PATCH] fixing up some kruft --- hy/compiler/ast27.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hy/compiler/ast27.py b/hy/compiler/ast27.py index f4d51b5..1ceeff9 100644 --- a/hy/compiler/ast27.py +++ b/hy/compiler/ast27.py @@ -149,7 +149,7 @@ class AST27Converter(object): return ast.Call( func=ast.Attribute( - value=ast.Str(s=str(target)), + value=self.render(target), attr=str(attr), ctx=ast.Load() ),