diff options
-rwxr-xr-x | Plugin/Convert.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Plugin/Convert.pm b/Plugin/Convert.pm index 46af1e2..1ee4f49 100755 --- a/Plugin/Convert.pm +++ b/Plugin/Convert.pm @@ -54,6 +54,7 @@ sub convert { return "Syntax: convert <from> [to <to>]\n" unless ($from); my $converted = convert_common($from, $to); + return "Define $from: $converted\n" unless $to; return "Convert $from -> $to: $converted\n"; } |