Skip to content

Commit

Permalink
Fix typo in circular dep error message
Browse files Browse the repository at this point in the history
  • Loading branch information
phrohdoh committed Dec 18, 2018
1 parent fadf97d commit 5c54438
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 5c54438

Please sign in to comment.