From a20b17a855eb07bba8f3edf415f84d73db7f8bf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?O=C4=9Fuz=20Yar=C4=B1mtepe?= Date: Sat, 22 Nov 2008 19:27:28 +0000 Subject: [PATCH] date = time.gmtime() line doesn't belong to the if statement at the org code. So taking back the indentation --- planet/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/planet/__init__.py b/planet/__init__.py index 8754710..962f129 100644 --- a/planet/__init__.py +++ b/planet/__init__.py @@ -299,7 +299,7 @@ class Planet: # Update time # Gezegen sayfasindaki son guncellenme zamanini dogru gmstermesi icin localtime olarak degistirildi # date = time.gmtime() - date = time.localtime() + date = time.localtime() tp.set("date", time.strftime(date_format, date)) tp.set("date_iso", time.strftime(TIMEFMT_ISO, date)) tp.set("date_822", time.strftime(TIMEFMT_822, date))