2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-22 20:24:36 +00:00

55_DWD_OpenData.pm: added "use Time::Local" to fix error "undefined subroutine timelocal" (Forum #83097)

git-svn-id: https://svn.fhem.de/fhem/trunk@16745 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
jensb 2018-05-15 20:07:52 +00:00
parent ed00a9be1a
commit 305c075631

View File

@ -43,8 +43,9 @@ use File::Temp qw(tempfile);
use IO::Uncompress::Unzip qw(unzip $UnzipError); use IO::Uncompress::Unzip qw(unzip $UnzipError);
use POSIX; use POSIX;
use Storable qw(freeze thaw); use Storable qw(freeze thaw);
use Time::Piece;
use Time::HiRes qw(gettimeofday); use Time::HiRes qw(gettimeofday);
use Time::Local;
use Time::Piece;
use Blocking; use Blocking;
use HttpUtils; use HttpUtils;