From 6b82c5c96bddc66e4f80a10f869ff8c75aaea9e7 Mon Sep 17 00:00:00 2001 From: swag Date: Sat, 10 Dec 2022 19:03:53 -0500 Subject: [PATCH] Was in the neighborhood and... --- lib/PostText/Command/argon2.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PostText/Command/argon2.pm b/lib/PostText/Command/argon2.pm index 49bb153..bc2085e 100644 --- a/lib/PostText/Command/argon2.pm +++ b/lib/PostText/Command/argon2.pm @@ -6,7 +6,7 @@ has description => 'Hash a string with Argon2'; has usage => sub ($self) { $self->extract_usage }; sub run($self, @args) { - say $self->app->authenticator->hash_password($_) for @args; + say $self->app->authenticator->hash_password($_) for @args } 1;