Don't hardcode location of sqldiff

This commit is contained in:
flan 2017-11-01 04:06:06 +01:00
parent ce3aa4a685
commit 6617398921

View File

@ -52,7 +52,7 @@ def diff(left_db_path, right_db_path):
:return: True if the specified databases differ, False else
"""
command = ["/bin/sqldiff", left_db_path, right_db_path]
command = ["sqldiff", left_db_path, right_db_path]
child_process = subprocess.Popen(command,
shell=False,