diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2018-02-14 14:06:14 +0100 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2018-02-14 14:06:14 +0100 |
commit | a090d49ae630cf95b923d8a4f979eff0b7a66cb8 (patch) | |
tree | 135b0fa797bf7ed81cf4e916d0aa0d1a35a7a5f2 /SBO-Lib/lib/SBO/App.pm | |
parent | e2fa49af4780b36e842d93e45adaadce9e929592 (diff) | |
download | sbotools2-a090d49ae630cf95b923d8a4f979eff0b7a66cb8.tar.xz |
SBO::App: Fix package name and method lookup
Diffstat (limited to 'SBO-Lib/lib/SBO/App.pm')
-rwxr-xr-x | SBO-Lib/lib/SBO/App.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SBO-Lib/lib/SBO/App.pm b/SBO-Lib/lib/SBO/App.pm index 7033d93..3e600fe 100755 --- a/SBO-Lib/lib/SBO/App.pm +++ b/SBO-Lib/lib/SBO/App.pm @@ -1,4 +1,4 @@ -package SBO::App::Remove; +package SBO::App; # vim: ts=2:et # @@ -15,7 +15,7 @@ use File::Basename; sub new { my $class = shift; - my $self = _parse_opts(@_); + my $self = $class->_parse_opts(@_); $self->{fname} = basename( (caller(0))[1] ); return bless $self, $class; |