Fixing a bug @jd noticed.

This commit is contained in:
Paul R. Tagliamonte 2013-04-09 20:34:46 -04:00
parent e55e63c759
commit b71d5c597e

View File

@ -189,7 +189,7 @@ class HyASTCompiler(object):
return HyExpression([HySymbol(name), form]).replace(form)
@builds("quote")
@checkargs(min=1, max=2)
@checkargs(exact=1)
def compile_quote(self, entries):
return self.compile(self._render_quoted_form(entries[1]))