Skip to content

Commit

Permalink
Newlines on certain error messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Sabino Mullane committed Nov 27, 2011
1 parent 15bfd29 commit d581404
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bucardo
Original file line number Diff line number Diff line change
Expand Up @@ -2418,7 +2418,7 @@ sub update_dbgroup {

## Make sure this database group exists!
if (! exists $DBGROUP->{$name}) {
die qq{Could not find a database group named "$name"\nUse 'list dbgroups' to see all available.};
die qq{Could not find a database group named "$name"\nUse 'list dbgroups' to see all available.\n};
}

## From this point on, we have either:
Expand Down Expand Up @@ -3437,7 +3437,7 @@ sub update_table {

## Make sure this table exists!
if (! exists $GOAT->{$name}) {
die qq{Could not find a table named "$name"\nUse 'list tables' to see all available.};
die qq{Could not find a table named "$name"\nUse 'list tables' to see all available.\n};
}

## Store the id so we work with that alone whenever possible
Expand Down Expand Up @@ -4238,7 +4238,7 @@ sub update_sync {

## Make sure this sync exists!
if (! exists $SYNC->{$name}) {
die qq{Could not find a sync named "$name"\nUse 'list syncs' to see all available.};
die qq{Could not find a sync named "$name"\nUse 'list syncs' to see all available.\n};
}


Expand Down

0 comments on commit d581404

Please sign in to comment.