Skip to content

Commit

Permalink
minor coding style fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Pierre Tardy <pierre.tardy@intel.com>
  • Loading branch information
Pierre Tardy committed Aug 14, 2014
1 parent 92ce77c commit 5586c30
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -17,7 +17,7 @@ pyflakes:
pyflakes master/buildbot slave/buildslave

pep8:
pep8 --config=common/pep8rc master/buildbot slave/buildslave www/buildbot_*.py www/setup.py www/*/buildbot_*.py www/*/setup.py
pep8 --config=common/pep8rc master/buildbot slave/buildslave www/buildbot_*/ www/setup.py www/*/buildbot_*/ www/*/setup.py

gruntci:
cd www; node_modules/.bin/grunt ci
1 change: 1 addition & 0 deletions master/buildbot/www/plugin.py
Expand Up @@ -17,6 +17,7 @@

from twisted.web import static


class Application(object):
def __init__(self, modulename, description):
self.description = description
Expand Down
13 changes: 3 additions & 10 deletions pkg/buildbot_pkg.py
Expand Up @@ -64,18 +64,11 @@ def getVersion(init_file):
# - override the distutils command to insert our js build
# - has very small setup.py
#
# from setuptools import setup
# from buildbot_pkg import setup_www
#
# class cmdClass(dict):
# def get(self, name):
# import buildbot_pkg
# return buildbot_pkg.getCmdClassForJS(name)
#
# setup(
# setup_www(
# ...
#
# setup_requires="buildbot_pkg",
# cmdclass=cmdClass(),
# packages=["buildbot_myplugin"]
# )
#
# We need to override the first command done, so that source tree is populated very soon,
Expand Down
1 change: 1 addition & 0 deletions www/codeparameter/buildbot_codeparameter/__init__.py
Expand Up @@ -16,6 +16,7 @@
from buildbot.www.plugin import Application
from buildbot.schedulers.forcesched import TextParameter


class CodeParameter(TextParameter):

"""A code editor using ace"""
Expand Down

0 comments on commit 5586c30

Please sign in to comment.