remove trailing whitespace
[buildbot.git] / docs / buildbot.texinfo.rej
blob8a1dd895f385a1a533a48ac2f7be9b2111b5253b
1 ***************
2 *** 5044,5053 ****
3   @example
4   from buildbot.steps.shell import ShellCommand, WithProperties
5   
6 - f.addStep(ShellCommand,
7             command=["tar", "czf",
8                      WithProperties("build-%s.tar.gz", "revision"),
9 -                    "source"])
10   @end example
11   
12   If this BuildStep were used in a tree obtained from Subversion, it
13 --- 5046,5055 ----
14   @example
15   from buildbot.steps.shell import ShellCommand, WithProperties
16   
17 + f.addStep(ShellCommand(
18             command=["tar", "czf",
19                      WithProperties("build-%s.tar.gz", "revision"),
20 +                    "source"]))
21   @end example
22   
23   If this BuildStep were used in a tree obtained from Subversion, it
24 ***************
25 *** 5066,5075 ****
26   arguments:
27   
28   @example
29 - f.addStep(ShellCommand,
30             command=["tar", "czf",
31                      WithProperties("build-%(revision)s.tar.gz"),
32 -                    "source"])
33   @end example
34   
35   Don't forget the extra ``s'' after the closing parenthesis! This is
36 --- 5068,5077 ----
37   arguments:
38   
39   @example
40 + f.addStep(ShellCommand(
41             command=["tar", "czf",
42                      WithProperties("build-%(revision)s.tar.gz"),
43 +                    "source"]))
44   @end example
45   
46   Don't forget the extra ``s'' after the closing parenthesis! This is