diff options
author | Russ Allbery <rra@stanford.edu> | 2013-03-27 19:16:15 -0700 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2013-03-27 19:21:52 -0700 |
commit | dd1ba6003880e7353e6a84924b7e9d572ff00c57 (patch) | |
tree | bdce41c4b757c90ee527bea6e06dd35fdde9a3ae | |
parent | 945608173ffc08cd1351433100dcc869aa6dafb1 (diff) |
Fix return status of Wallet::Schemarelease/1.0
The module wasn't always returning a true value when loaded.
Change-Id: I998ab25509cb9079034cae6aca467024ec6b4949
Reviewed-on: https://gerrit.stanford.edu/990
Reviewed-by: Russ Allbery <rra@stanford.edu>
Tested-by: Russ Allbery <rra@stanford.edu>
-rw-r--r-- | perl/Wallet/Schema.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl/Wallet/Schema.pm b/perl/Wallet/Schema.pm index fc63447..d4ef241 100644 --- a/perl/Wallet/Schema.pm +++ b/perl/Wallet/Schema.pm @@ -55,10 +55,10 @@ sub connect { return $schema; } -__END__ - 1; +__END__ + ############################################################################## # Documentation ############################################################################## |