Skip to content

Commit

Permalink
Fix pep8 error: E302 expected 2 blank lines, found 1
Browse files Browse the repository at this point in the history
Use two empty line as a block separator
  • Loading branch information
marek-sezemsky committed Feb 5, 2015
1 parent 31e349a commit f874d1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions master/buildbot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import os
import re


def getVersion(init_file):
"""
Return BUILDBOT_VERSION environment variable, content of VERSION file, git
Expand Down Expand Up @@ -56,4 +57,5 @@ def getVersion(init_file):

return "latest"


version = getVersion(__file__)
2 changes: 2 additions & 0 deletions slave/buildslave/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import os
import re


def getVersion(init_file):
"""
Return BUILDBOT_VERSION environment variable, content of VERSION file, git
Expand Down Expand Up @@ -56,4 +57,5 @@ def getVersion(init_file):

return "latest"


version = getVersion(__file__)

0 comments on commit f874d1d

Please sign in to comment.