Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-22 13:18:13 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-22 13:18:13 (GMT)
commitbbe297e5a994242e5fe8b4bcf8b08210024bb871 (patch)
tree90adbc4747f4ca5a75b0636f4bfffd3228f33522 /devbot
parentd1166c9415ed8e6a8729bb6b72084f71adf1cd54 (diff)
Fix pep8
Diffstat (limited to 'devbot')
-rw-r--r--devbot/build.py4
-rw-r--r--devbot/config.py2
-rw-r--r--devbot/distro.py12
3 files changed, 9 insertions, 9 deletions
diff --git a/devbot/build.py b/devbot/build.py
index c74df46..211cc88 100644
--- a/devbot/build.py
+++ b/devbot/build.py
@@ -196,7 +196,7 @@ def _build_module(module, log=None):
source_dir = module.get_source_dir()
if not os.path.exists(source_dir):
- print("Source directory does not exist. Please pull the sources " \
+ print("Source directory does not exist. Please pull the sources "
"before building.")
return False
@@ -230,7 +230,7 @@ def _distribute_module(module, log=None):
build_dir = module.get_build_dir()
if not os.path.exists(build_dir):
- print("Build directory does not exist. Please build before " \
+ print("Build directory does not exist. Please build before "
"distributing.")
return False
diff --git a/devbot/config.py b/devbot/config.py
index 9a79dcc..d444869 100644
--- a/devbot/config.py
+++ b/devbot/config.py
@@ -55,7 +55,7 @@ class Module:
elif os.path.exists(os.path.join(source_dir, "autogen.sh")):
return "autotools"
else:
- print("The source directory has unexpected content, please " \
+ print("The source directory has unexpected content, please "
"delete it and pull\nthe source again.")
return None
diff --git a/devbot/distro.py b/devbot/distro.py
index 2d006da..d0d281c 100644
--- a/devbot/distro.py
+++ b/devbot/distro.py
@@ -50,12 +50,12 @@ def get_distro_info():
_distro_info = unknown_distro
if not _distro_info.supported:
- print("*********************************************************\n" \
- "You are running an unsupported distribution. You might be\n" \
- "able to make sugar work by installing or building \n" \
- "packages but it certainly won't work out of the box.\n" \
- "You are strongly encouraged to pick one of the supported \n" \
- "distributions listed in the README.\n" \
+ print("*********************************************************\n"
+ "You are running an unsupported distribution. You might be\n"
+ "able to make sugar work by installing or building \n"
+ "packages but it certainly won't work out of the box.\n"
+ "You are strongly encouraged to pick one of the supported \n"
+ "distributions listed in the README.\n"
"*********************************************************\n")
return _distro_info