misc.py

changeset 5
a65b680f1774
parent 4
312c432bb9e6
child 18
1c8ff93fbfac
--- a/misc.py	Fri May 19 21:15:12 2017 +0300
+++ b/misc.py	Thu May 25 16:41:21 2017 +0300
@@ -2,7 +2,7 @@
 
 def tänään():
 	return date.today()
-	#return date(2017, 4, 10)
+	#return date(2017, 1, 10)
 
 def nyt():
 	return datetime.now()
@@ -10,7 +10,9 @@
 
 def muotoile_aika(aika, suhteellinen = True):
 	erotus = aika - nyt()
-	if suhteellinen and erotus < timedelta(minutes = 30):
+	if suhteellinen and erotus < timedelta(minutes = 1):
+		return 'nyt'
+	elif suhteellinen and erotus < timedelta(minutes = 10):
 		return '%dm' % round(erotus.seconds / 60)
 	elif aika.date() == tänään():
 		return '%d:%02d' % (aika.hour, aika.minute)

mercurial