Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/clean.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-22 12:58:30 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-22 12:58:30 (GMT)
commitd1166c9415ed8e6a8729bb6b72084f71adf1cd54 (patch)
tree2ffc7f1f27a88ae2a7d7271b8d133a273e556e2f /devbot/clean.py
parent477536204d9d490e224fdbe46efb8cfa181edb6b (diff)
Python 3 compatibility
Diffstat (limited to 'devbot/clean.py')
-rw-r--r--devbot/clean.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/clean.py b/devbot/clean.py
index 8d0c7a0..c31e058 100644
--- a/devbot/clean.py
+++ b/devbot/clean.py
@@ -4,7 +4,7 @@ from devbot import state
def clean(build_only=False):
- print "\n= Clean =\n"
+ print("\n= Clean =\n")
build.clean()
state.clean(build_only=build_only)