Skip to content

Commit

Permalink
[bugzilla] Fix name error in setup
Browse files Browse the repository at this point in the history
This went unnoticed when we changed to the get_list method
  • Loading branch information
embolalia committed Mar 19, 2013
1 parent 01afabc commit 3a90f2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bugzilla.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def configure(config):
def setup(willie):
regexes = []
if willie.config.has_option('bugzilla', 'domains'):
for domain in willie.config.bugzilla.get_list(domains):
for domain in willie.config.bugzilla.get_list('domains'):
regex = re.compile('%s/show_bug.cgi\?\S*?id=(\d+)' % domain)
regexes.append(regex)
else:
Expand Down

0 comments on commit 3a90f2a

Please sign in to comment.