diff options
author | Christian Pointner <equinox@helsinki.at> | 2015-07-22 12:22:28 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2015-07-22 12:22:28 (GMT) |
commit | f4fd11fd93aeba8650f413f4a7a538eb8ba59ea0 (patch) | |
tree | 986f50d947ca10377188ec6473eee310e553c514 | |
parent | fc91f05b685bc480845b77b273b5072a1ef54581 (diff) |
whitespace cleanup
-rw-r--r-- | rhimport.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rhimport.pm b/rhimport.pm index c9035c0..66e37f7 100644 --- a/rhimport.pm +++ b/rhimport.pm @@ -63,7 +63,7 @@ sub get_rd_week my $now = DateTime->now(); my $tz = DateTime::TimeZone->new(name => 'Europe/Vienna'); my $tz_offset = $tz->offset_for_datetime($now); - my $sEpoch = $now->epoch() + $tz_offset; + my $sEpoch = $now->epoch() + $tz_offset; my $week = floor(((($sEpoch + 259200)/604800) + 2) % 4) + 1; return $week; |