From 1a79f154a3321772af92c353edc53891e8c9e8c0 Mon Sep 17 00:00:00 2001
From: Andrew Ruthven <andrew@etc.gen.nz>
Date: Sat, 7 Jul 2012 22:03:39 +1200
Subject: [PATCH] Assume that any XML file we load via the CLI is an UTF-8
 file.

---
 bin/mythtv-status | 1 +
 1 file changed, 1 insertion(+)

diff --git a/bin/mythtv-status b/bin/mythtv-status
index d12aa00..d3e36c8 100755
--- a/bin/mythtv-status
+++ b/bin/mythtv-status
@@ -668,6 +668,7 @@ sub load_xml {
       || die "Failed to open $c->{'xml_file'} for reading: $!\n";
 
     $status = join("", <IN>);
+    $charset = 'UTF-8';
 
     close IN;
   } else {
-- 
2.30.2