summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2015-07-22 12:22:28 (GMT)
committerChristian Pointner <equinox@helsinki.at>2015-07-22 12:22:28 (GMT)
commitf4fd11fd93aeba8650f413f4a7a538eb8ba59ea0 (patch)
tree986f50d947ca10377188ec6473eee310e553c514
parentfc91f05b685bc480845b77b273b5072a1ef54581 (diff)
whitespace cleanup
-rw-r--r--rhimport.pm2
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;