]> git.etc.gen.nz Git - mythtv-status.git/commitdiff
Use require, not use for the MythTV module.
authorAndrew Ruthven <andrew@etc.gen.nz>
Mon, 19 Nov 2007 08:24:39 +0000 (21:24 +1300)
committerAndrew Ruthven <andrew@cyclops.etc.gen.nz>
Mon, 19 Nov 2007 08:24:39 +0000 (21:24 +1300)
This means that if the module isn't installed the script can still run.

bin/mythtv-status

index fa32ac9bc43535fb5e5a6d45765c24232238fac0..66d3fcb7f5ce9a19af089015a222978995df1e6c 100755 (executable)
@@ -183,7 +183,7 @@ my $xml = eval { $parser->parse_string( $status ) };
 ### Prep the Perl MythTV API if available.
 ###
 my $myth = undef;
-eval { use MythTV };
+eval { require MythTV };
 if (! $@) {
   eval { $myth = new MythTV() };
 }