diff --git a/stacker/stack.py b/stacker/stack.py index 811c34693..aa5ab81b4 100644 --- a/stacker/stack.py +++ b/stacker/stack.py @@ -98,7 +98,7 @@ def requires(self): deps = variable.dependencies() if self.name in deps: message = ( - "Variable %s in stack %s has a ciruclar reference" + "Variable %s in stack %s has a circular reference" ) % (variable.name, self.name) raise ValueError(message) requires.update(deps)