Delete a ' in `cond_sql_or` doc

This commit is contained in:
Thomas Applencourt 2015-04-29 18:18:28 +02:00
parent 2027cabe98
commit 35ac8bcdb6
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ def checkSQLite3(db_path):
def cond_sql_or(table_name, l_value, glob=False):
"""Take a table_name, a list of value and create the sql 'or' commande
for example : (elt = "Na" OR elt = "Mg"')"""
for example : (elt = "Na" OR elt = "Mg")"""
opr = "GLOB" if glob else "="