Skip to content

Commit a08ce0f

Browse files
committed
Added print statement to _get_commands method
1 parent 47d2301 commit a08ce0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mysql/toolkit/components/execute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __init__(self, mysql_instance, sql_script, commands=None, split_func=True, s
3131
self.dump_fails()
3232

3333
def _get_commands(self, sql_script):
34-
print('\tRetrieving commands')
34+
print('\tRetrieving commands from', sql_script)
3535
# Open and read the file as a single buffer
3636
with open(sql_script, 'r') as fd:
3737
sql_file = fd.read()

0 commit comments

Comments
 (0)