Skip to content

Commit

Permalink
Merge pull request #6455 from jacksontj/develop
Browse files Browse the repository at this point in the history
Fixing a typo ;)
  • Loading branch information
s0undt3ch committed Jul 31, 2013
2 parents e921f7a + 46f2fe8 commit cc9de9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions salt/utils/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def test():
dependencies
)
)
self.depencancies = dependencies
self.dependencies = dependencies
self.fallback_funcion = kwargs.get('fallback_funcion')

def __call__(self, function):
Expand All @@ -57,7 +57,7 @@ def __call__(self, function):
class wide depandancy_dict
'''
module = inspect.getmodule(inspect.stack()[1][0])
for dep in self.depencancies:
for dep in self.dependencies:
self.dependency_dict[dep].add(
(module, function, self.fallback_funcion)
)
Expand Down

0 comments on commit cc9de9a

Please sign in to comment.