From c55515d2daf1c9ed5fb09e5dc39667f4f39dbd85 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 2 Mar 2018 12:32:09 +0000 Subject: [PATCH] Bug 19160: Remove tab characters causing qa script to fail Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart --- C4/Auth_with_cas.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/C4/Auth_with_cas.pm b/C4/Auth_with_cas.pm index 08012da0ef..2885caf43a 100644 --- a/C4/Auth_with_cas.pm +++ b/C4/Auth_with_cas.pm @@ -32,10 +32,10 @@ use YAML; use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $debug); BEGIN { - require Exporter; - $debug = $ENV{DEBUG}; - @ISA = qw(Exporter); - @EXPORT = qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url logout_if_required); + require Exporter; + $debug = $ENV{DEBUG}; + @ISA = qw(Exporter); + @EXPORT = qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url logout_if_required); } my $defaultcasserver; my $casservers; -- 2.11.0