From e5056eaeea2d8f8aa4a9d7a0703f70ed980a19d7 Mon Sep 17 00:00:00 2001 From: Dmitry Maksyoma Date: Thu, 23 Feb 2023 07:01:42 +1300 Subject: [PATCH] vncserver: fix debug output --- unix/KasmVNC/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/KasmVNC/Config.pm b/unix/KasmVNC/Config.pm index 7a5644a..d194c78 100644 --- a/unix/KasmVNC/Config.pm +++ b/unix/KasmVNC/Config.pm @@ -36,7 +36,7 @@ sub load { $logger->debug("Loading config " . $self->{filename}); my $yamlDocuments = YAML::Tiny->read($self->{filename}); unless (defined $yamlDocuments) { - die "Couldn't load config: $self-{filename}. Probable reason: No newline at end of file"; + die "Couldn't load config: $self->{filename}. Probable reason: No newline at end of file"; } $self->{data} = $yamlDocuments->[0];