From 79d8611c9b83da53cdf5fecf328fe8e910c4c15d Mon Sep 17 00:00:00 2001
From: Patrick Meidl <pm2@sanger.ac.uk>
Date: Mon, 10 Jul 2006 13:47:26 +0000
Subject: [PATCH] bug fix to cope with empty db passwords

---
 modules/Bio/EnsEMBL/Utils/ConversionSupport.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/Bio/EnsEMBL/Utils/ConversionSupport.pm b/modules/Bio/EnsEMBL/Utils/ConversionSupport.pm
index 9bc97f118e..9e5270fa59 100644
--- a/modules/Bio/EnsEMBL/Utils/ConversionSupport.pm
+++ b/modules/Bio/EnsEMBL/Utils/ConversionSupport.pm
@@ -643,7 +643,7 @@ sub get_database {
             -host   => $self->param("${prefix}host"),
             -port   => $self->param("${prefix}port"),
             -user   => $self->param("${prefix}user"),
-            -pass   => $self->param("${prefix}pass"),
+            -pass   => $self->param("${prefix}pass") || '',
             -dbname => $self->param("${prefix}dbname"),
             -group  => $database,
     );
-- 
GitLab