Skip to content

Commit

Permalink
fix typo, mention the need for allowForce to force from IRC
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Aug 7, 2011
1 parent 2c78fc8 commit fb957e2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion master/docs/tutorial/tour.txt
Expand Up @@ -88,7 +88,7 @@ the error.
Open up the config again and introduce a syntax error by removing the first
single quote in the two lines you changed, so they read::

c[title'] = "Pyflakes"
c['title'] = "Pyflakes"
c['titleURL'] = "http://divmod.org/trac/wiki/DivmodPyflakes"

This creates a Python SyntaxError. Now go ahead and reconfig the buildmaster::
Expand Down Expand Up @@ -223,6 +223,13 @@ You can also use the bot to force a build::

bbtest: force build runtests test build

But to allow this, you'll need to have ``allowForce`` in the IRC
configuration::

c['status'].append(words.IRC(host="irc.freenode.org", nick="bbtest",
allowForce=True,
channels=["#buildbot-test"]))

This time, the bot is giving you more output, as it's specifically responding
to your direct request to force a build, and explicitly tells you when the
build finishes::
Expand Down

0 comments on commit fb957e2

Please sign in to comment.