Skip to content

Commit bb29961

Browse files
committed
scope issue preventing the new style recordings from being detected
1 parent 92f151d commit bb29961

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

trunk/mythtv/recordings.pm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,10 @@ package mythtv::recordings;
6161
$video_dir =~ s/\/+$//;
6262

6363
# Try a basename file search
64+
my $rows;
6465
$sh = $dbh->prepare('SELECT *, basename FROM recorded');
6566
if ($sh) {
66-
my $rows = $sh->execute();
67+
$rows = $sh->execute();
6768
}
6869
if (defined $rows) {
6970
while ($file = $sh->fetchrow_hashref()) {

trunk/nuvexport

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# $Author$
66

77
# Version
8-
$VERSION = '0.2 0.20051020.svn';
8+
$VERSION = '0.2 0.20051106.svn';
99

1010
# Autoflush buffers
1111
$|++;

trunk/nuvexport.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name: nuvexport
66
Version: 0.2
7-
Release: 0.20051020.svn
7+
Release: 0.20051106.svn
88
License: GPL
99
Summary: mythtv nuv video file conversion script
1010
URL: http://forevermore.net/nuvexport/

0 commit comments

Comments
 (0)