diff --git a/hy/compiler.py b/hy/compiler.py index 644ea5e..2103928 100755 --- a/hy/compiler.py +++ b/hy/compiler.py @@ -548,7 +548,7 @@ class HyASTCompiler(object): @special(["quote", "quasiquote"], [FORM]) def compile_quote(self, expr, root, arg): level = Inf if root == "quote" else 0 # Only quasiquotes can unquote - imports, stmts, splice = self._render_quoted_form(arg, level) + imports, stmts, _ = self._render_quoted_form(arg, level) ret = self.compile(stmts) ret.add_imports("hy", imports) return ret