diff options
-rwxr-xr-x | tools/draklive | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/draklive b/tools/draklive index 1b5901ed9..06f413eb6 100755 --- a/tools/draklive +++ b/tools/draklive @@ -822,7 +822,7 @@ GetOptions( "config:s" => sub { my $path = $_[1]; #- don't use do(), since it can't see lexicals in the enclosing scope - my $cfg = eval(cat_($path)) or die "unable to load $path"; + my $cfg = eval(cat_($path)) or die "unable to load $path: $@"; put_in_hash(\%live, $cfg); print "loaded $path as config file\n"; }, |