summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorRod Whitby <rod@whitby.id.au>2005-07-29 10:00:18 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-07-29 10:00:18 +0000
commit83fe3621cd87216dce4fefd8828807096a548fa7 (patch)
treed52dc5b16c1b0f792cda040ac571deefa17607bd /classes
parent1424698cf684f86dcb08797909f3bd63eee42935 (diff)
parent10eba0d2b82d58576ed28f9d73d8c66ba25c4164 (diff)
merge of acedaefff26954cb3841217cd873a7f0336de1f1
and faa2fa21cd8b3913cea3925dafd04edf752bca02
Diffstat (limited to 'classes')
-rw-r--r--classes/tinderclient.bbclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/classes/tinderclient.bbclass b/classes/tinderclient.bbclass
index 5b55589ec0..3c88b2ac63 100644
--- a/classes/tinderclient.bbclass
+++ b/classes/tinderclient.bbclass
@@ -5,21 +5,21 @@ def tinder_tz_offset(off):
return int(off)
except ValueError:
if off == "Europe/Berlin":
- return 200
+ return 120
else:
return 0
def tinder_tinder_time(offset):
import datetime
- td = datetime.timedelta(tinder_tz_offset(offset))
+ td = datetime.timedelta(minutes=tinder_tz_offset(offset))
time = datetime.datetime.utcnow() + td
return time.strftime('%m/%d/%Y %H:%M:%S')
def tinder_tinder_start(date,offset):
import datetime, time
- td = datetime.timedelta(tinder_tz_offset(offset))
+ td = datetime.timedelta(minutes=tinder_tz_offset(offset))
ti = time.strptime(date, "%m/%d/%Y %H:%M:%S")
- ti = datetime.datetime(*ti[0:7])-td
+ time = datetime.datetime(*ti[0:7])+td
return time.strftime('%m/%d/%Y %H:%M:%S')
def tinder_send_email(da, header, log):