From eded545b1d86eabe45d3918c28bf1e72096a4e8d Mon Sep 17 00:00:00 2001 From: Anh Tran Date: Tue, 17 Jan 2017 10:14:51 +0700 Subject: [PATCH] Remove white space between print () Change-Id: I03fa725a4a374dd4044b4c542769d192e2b49234 --- tools/check_user_profiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/check_user_profiles.py b/tools/check_user_profiles.py index 15adc0e71..421b27eee 100644 --- a/tools/check_user_profiles.py +++ b/tools/check_user_profiles.py @@ -18,7 +18,7 @@ import memcache def check(expected, actual): if expected != actual: - print ('Expected: %s\nActual: %s' % (expected, actual)) + print('Expected: %s\nActual: %s' % (expected, actual)) def main():