Correct typo

The filter for not double running ourself was mis-spelled.

Change-Id: Ief500bb4426f74cf5d41440a80056ae4122f6fcb
This commit is contained in:
Monty Taylor 2013-08-03 15:15:33 -04:00
parent 9a3b733887
commit b6234379aa
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ def cfg_to_args(path='setup.cfg'):
if setup_hooks:
setup_hooks = [
hook for hook in split_multiline(setup_hooks)
if hook != 'pbr.hook.setup_hook']
if hook != 'pbr.hooks.setup_hook']
for hook in setup_hooks:
hook_fn = resolve_name(hook)
try :