Don't hardcode location of sqldiff
This commit is contained in:
parent
ce3aa4a685
commit
6617398921
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user