Skip to content

Commit

Permalink
Fix typo in calling func()
Browse files Browse the repository at this point in the history
  • Loading branch information
harryf committed Jun 30, 2008
1 parent d5fb524 commit 4ee0370
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dammit/cachemanager.py
Expand Up @@ -34,7 +34,8 @@ def namespacer(func):
def namespace_wrapper(self, key, *args, **kwargs):
return func(
self,
key = "%s_%s" % ( self.namespace, key, *args, **kwargs )
key = "%s_%s" % ( self.namespace, key ),
*args, **kwargs
)
return namespace_wrapper

Expand Down

0 comments on commit 4ee0370

Please sign in to comment.