Skip to content
This repository was archived by the owner on May 7, 2024. It is now read-only.

adding a new changes #229

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mssqlscripter/scriptercallbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ def handle_script_plan_notification(response, display=False):
def handle_script_progress_notification(response, display=False):
if display:
sys.stderr.write(
u'Scripting progress: Status: {} Progress: {} out of {} objects scripted\n'.format(
response.status, response.completed_count, response.total_count))
u'Scripting progress: Status: {} Progress: {} out of {} objects scripted object name : {} \n'.format(
response.status, response.completed_count, response.total_count,response.scripting_object))

def handle_script_complete(response, display=False):
if response.has_error:
Expand Down