Remove white space between print ()

Change-Id: I03fa725a4a374dd4044b4c542769d192e2b49234
This commit is contained in:
Anh Tran 2017-01-17 10:14:51 +07:00
parent 2748b3ce29
commit eded545b1d
1 changed files with 1 additions and 1 deletions

View File

@ -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():