Skip to content

Commit b327ad5

Browse files
committed
fix a bug that would set rc-values to the first instance, rather than the
specific instance for that exporter type. timestamp update
1 parent 5e5fd90 commit b327ad5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

trunk/nuv_export/cli.pm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/perl -w
2-
#Last Updated: 2005.04.02 (xris)
2+
#Last Updated: 2005.04.03 (xris)
33
#
44
# cli.pm
55
#
@@ -174,10 +174,10 @@ package nuv_export::cli;
174174
# Commandline preference/override
175175
return $args{$arg} if (defined($args{$arg}));
176176
# Load rc preference
177-
$args{$arg} = rc_arg($arg, $package);
177+
my $rc_arg = rc_arg($arg, $package);
178178
# Return the rc preference, or the passed-in default value
179-
return defined($args{$arg})
180-
? $args{$arg}
179+
return defined($rc_arg)
180+
? $rc_arg
181181
: $default;
182182
}
183183

trunk/nuvexport

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Last Updated: 2005.02.28 (xris)
33

44
# Version
5-
$VERSION = '0.2 0.20050402.cvs';
5+
$VERSION = '0.2 0.20050403.cvs';
66

77
# Autoflush buffers
88
$|++;

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.20050402.cvs
7+
Release: 0.20050403.cvs
88
License: GPL
99
Summary: mythtv nuv video file conversion script
1010
URL: http://forevermore.net/nuvexport/

0 commit comments

Comments
 (0)