summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2018-07-10 21:49:54 +0200
committerFlorian Pritz <bluewind@xinu.at>2018-12-06 11:30:11 +0100
commitb15c50e2897fe9709c243f7c4397701ae3b8bc61 (patch)
tree524a4041697baecb5483f7a5b9f4c60fd13d274a
parentb4049febdc77ece25cb17bca6984076638e3ad5e (diff)
downloadbugzilla-b15c50e2897fe9709c243f7c4397701ae3b8bc61.tar.gz
bugzilla-b15c50e2897fe9709c243f7c4397701ae3b8bc61.tar.xz
Flyspray: Adapt to changed DB class
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r--Bugzilla/Migrate/Flyspray.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Migrate/Flyspray.pm b/Bugzilla/Migrate/Flyspray.pm
index 1de8fbf43..d96ebeaf4 100644
--- a/Bugzilla/Migrate/Flyspray.pm
+++ b/Bugzilla/Migrate/Flyspray.pm
@@ -148,7 +148,7 @@ sub new {
my ($class) = @_;
my $self = {};
bless $self, $class;
- $self->{dbh} = Bugzilla->dbh;
+ $self->{dbh} = Bugzilla->dbh->dbh;
$self->{sql} = SQL::Abstract->new;
return $self;
}