From 8710ce1687a9b9c95b0f7b6856e76d766c205561 Mon Sep 17 00:00:00 2001 From: Chico Venancio Date: Sun, 6 May 2018 03:21:55 +0000 Subject: [PATCH] fixing py syntax --- jupyterhub/orm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jupyterhub/orm.py b/jupyterhub/orm.py index 12ad2e21..2094ab42 100644 --- a/jupyterhub/orm.py +++ b/jupyterhub/orm.py @@ -629,8 +629,8 @@ def mysql_large_prefix_check(engine): 'show variables where variable_name like' '"innodb_large_prefix" or' 'variable_name like "innodb_file_format";').fetchall()) - if variables['innodb_file_format'] == 'Barracuda' and - variables['innodb_large_prefix'] == 'ON': + if (variables['innodb_file_format'] == 'Barracuda' and + variables['innodb_large_prefix'] == 'ON'): return True else: return False