Skip to content

Commit

Permalink
Merge pull request #690 from Phrohdoh/fix-typo-circular-deps
Browse files Browse the repository at this point in the history
Fix typo in circular dep error message
  • Loading branch information
russellballestrini committed Dec 18, 2018
2 parents 6f3485f + 5c54438 commit b2bb9d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stacker/stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b2bb9d7

Please sign in to comment.