From 0912c8870fb9be7ec86d31a647ec6037c00f6242 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 --- 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 08012da..2885caf 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.10.2