Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin J. Mitchell committed Mar 11, 2010
1 parent d6c2a34 commit 1293081
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildbot/changes/hgbuildbot.py
Expand Up @@ -62,8 +62,8 @@ def hook(ui, repo, hooktype, node=None, source=None, **kwargs):
branchtype = ui.config('hgbuildbot', 'branchtype')
branch = ui.config('hgbuildbot', 'branch')
fork = ui.configbool('hgbuildbot', 'fork', False)
stripcount = int(ui.config('notify','strip') or # notify also has this setting
ui.config('hgbuildbot','strip',3)))
# notify also has this setting
stripcount = int(ui.config('notify','strip') or ui.config('hgbuildbot','strip',3))
category = ui.config('hgbuildbot', 'category', None)
project = ui.config('hgbuildbot', 'project', '')
else:
Expand Down

0 comments on commit 1293081

Please sign in to comment.