Skip to content

Commit

Permalink
Merge branch 'master' into nine
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Apr 3, 2014
2 parents db0f7d1 + d89c85e commit bea0c26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ install:
- "[ $IS_LATEST = false ] || pip install pylint"
- "[ $IS_LATEST = false ] || pip install pyflakes"
- "[ $IS_LATEST = false ] || pip install sphinx"
- "[ $IS_LATEST = false ] || pip install pep8"
- "[ $IS_LATEST = false ] || pip install pep8==1.4.6"

# Tests running commands
script:
Expand Down
5 changes: 3 additions & 2 deletions master/buildbot/steps/source/p4.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
# Copyright Buildbot Team Members
# Portions Copyright 2013 Bad Dog Consulting

import os
import re

from buildbot import config
Expand Down Expand Up @@ -272,7 +271,9 @@ def _createClientSpec(self):
client_spec += "Client: %s\n\n" % self.p4client
client_spec += "Owner: %s\n\n" % self.p4user
client_spec += "Description:\n\tCreated by %s\n\n" % self.p4user
client_spec += "Root:\t%s\n\n" % os.path.normpath(self.build.path_module.join(builddir, self.workdir))
client_spec += "Root:\t%s\n\n" % self.build.path_module.normpath(
self.build.path_module.join(builddir, self.workdir)
)
client_spec += "Options:\t%s\n\n" % self.p4client_spec_options
if self.p4line_end:
client_spec += "LineEnd:\t%s\n\n" % self.p4line_end
Expand Down

0 comments on commit bea0c26

Please sign in to comment.