diff options
author | unknown <vva@eagle.mysql.r18.ru> | 2003-10-19 16:57:17 -0400 |
---|---|---|
committer | unknown <vva@eagle.mysql.r18.ru> | 2003-10-19 16:57:17 -0400 |
commit | 2a98f2943e1a4548d3e7fa20d2e517a11c021556 (patch) | |
tree | 3683b8218013594f202af0f19465d6422cb9e360 /scripts | |
parent | 6713bb090d81a6e2b48ecf0fb28b85e0d3ae1ee1 (diff) | |
download | mariadb-git-2a98f2943e1a4548d3e7fa20d2e517a11c021556.tar.gz |
made more fine error message in scripts/fill_help_tables.sh
scripts/fill_help_tables.sh:
made more fine error message
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/fill_help_tables.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/fill_help_tables.sh b/scripts/fill_help_tables.sh index 8ba05910596..cb5437f7178 100644 --- a/scripts/fill_help_tables.sh +++ b/scripts/fill_help_tables.sh @@ -112,6 +112,7 @@ sub add_topic_to_category $categories{$current_category}->{$topic_name}= $topics{$topic_name}; my $category= $categories{$current_category}; + $category->{__name__}= $current_category; if (exists($category->{__parent_category__})) { @@ -132,7 +133,7 @@ sub add_topic_to_category my $old_category= $topics{$topic_name}->{category}; if ($old_category ne $category) { - print_error "wrong category for $topic_name\n"; + print_error "wrong category for $topic_name (first one's \"$old_category->{__name__}\" second one's \"$current_category\")\n"; } } |