Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/check
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-22 13:20:32 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-22 13:20:32 (GMT)
commitd2a5a496a1bfdba36743a1090d51804167c7a83e (patch)
tree0415385614ce578d8126fe7c73629601cd4c1f28 /commands/check
parentbbe297e5a994242e5fe8b4bcf8b08210024bb871 (diff)
More python3 fixes
Diffstat (limited to 'commands/check')
-rwxr-xr-xcommands/check6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/check b/commands/check
index d5c1348..784a88d 100755
--- a/commands/check
+++ b/commands/check
@@ -74,7 +74,7 @@ def _run_unittests():
def _check_devbot():
- print "* Checking devbot"
+ print("* Checking devbot")
try:
_run_pep8()
@@ -87,7 +87,7 @@ def _check_devbot():
def _check_ui():
- print "* Checking UI"
+ print("* Checking UI")
profile_path = _get_profile()
result = run.run_test("sugar-runner", _get_test_path("shell.py"))
@@ -97,7 +97,7 @@ def _check_ui():
def _run_checks():
- print "\n= Check =\n"
+ print("\n= Check =\n")
return check.check() and _check_ui() and _check_devbot()