From 52ebcfae8c65f9d7ad7d1c10653aab07125c7605 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Mon, 22 Apr 2013 21:49:19 -0400 Subject: [PATCH] removing the dunder. that was a bad move. --- hy/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hy/compiler.py b/hy/compiler.py index bd74021..a112d3a 100644 --- a/hy/compiler.py +++ b/hy/compiler.py @@ -84,7 +84,7 @@ def ast_str(foobar): enc = codecs.getencoder('punycode') foobar, _ = enc(foobar) - return "__hy_%s" % (str(foobar).replace("-", "_")) + return "hy_%s" % (str(foobar).replace("-", "_")) def builds(_type):