Ticket #4865: 0001-Add-a-missing-newline-to-a-die-message.patch

File 0001-Add-a-missing-newline-to-a-die-message.patch, 866 bytes (added by andrew@…, 18 years ago)
  • mythtv/bindings/perl/MythTV.pm

    From 44e8632ef5d431f09cef71acbbdc15824298558d Mon Sep 17 00:00:00 2001
    From: Andrew Ruthven <puck@catalyst.net.nz>
    Date: Wed, 5 Mar 2008 16:41:38 +1300
    Subject: [PATCH] Add a missing newline to a die message.
    
    ---
     mythtv/bindings/perl/MythTV.pm |    2 +-
     1 files changed, 1 insertions(+), 1 deletions(-)
    
    diff --git a/mythtv/bindings/perl/MythTV.pm b/mythtv/bindings/perl/MythTV.pm
    index 3dcc01a..f850f1f 100644
    a b package MythTV;  
    213213            push @devices, $dev;
    214214        }
    215215        if (@devices < 1) {
    216             die "No backends found.  Please copy $conf/config.xml from a"
     216            die "No backends found.  Please copy $conf/config.xml from a\n"
    217217               ."working MythTV installation instead.\n";
    218218        }
    219219        my $upnp = $devices[0];