summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gaffney <agaffney@gentoo.org>2008-01-05 05:28:11 +0000
committerAndrew Gaffney <agaffney@gentoo.org>2008-01-05 05:28:11 +0000
commite4c4bd5bf3d74740f713fabb86cb4e92aa23d781 (patch)
tree582e5c5ea662ba4961e89c114a754d44e1fde7ba
parentonly import open2 from IPC::Open2 (diff)
downloadscire-e4c4bd5bf3d74740f713fabb86cb4e92aa23d781.tar.gz
scire-e4c4bd5bf3d74740f713fabb86cb4e92aa23d781.tar.bz2
scire-e4c4bd5bf3d74740f713fabb86cb4e92aa23d781.zip
change set_filename() to load_jobfile()
svn path=/branches/new-fu/; revision=329
-rw-r--r--client/Scire.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/Scire.pm b/client/Scire.pm
index 8fd5227..19c6119 100644
--- a/client/Scire.pm
+++ b/client/Scire.pm
@@ -7,12 +7,12 @@ sub new {
my $self = {};
bless ($self, $class);
if(defined $filename) {
- $self->set_filename($filename);
+ $self->load_jobfile($filename);
}
return $self;
}
-sub set_filename {
+sub load_jobfile {
my $self = shift;
my $filename = shift;
$self->{filename} = $filename;