diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-07-10 21:49:54 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-12-06 11:30:11 +0100 |
commit | b15c50e2897fe9709c243f7c4397701ae3b8bc61 (patch) | |
tree | 524a4041697baecb5483f7a5b9f4c60fd13d274a | |
parent | b4049febdc77ece25cb17bca6984076638e3ad5e (diff) | |
download | bugzilla-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.pm | 2 |
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; } |