Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alkorgun/blacksmith-2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'expansions/new_year/code.py')
-rw-r--r--expansions/new_year/code.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/expansions/new_year/code.py b/expansions/new_year/code.py
index 7cf1547..a77e759 100644
--- a/expansions/new_year/code.py
+++ b/expansions/new_year/code.py
@@ -14,7 +14,7 @@ class expansion_temp(expansion):
list = ["Until the New Year (UTC) left:"]
Time = time.gmtime()
dr = lambda Numb: (Numb, ("s" if Numb >= 2 else ""))
- t0 = (365 if (Time.tm_year%4) else 366)
+ t0 = (365 if (Time.tm_year % 4) else 366)
t1 = (t0 - Time.tm_yday)
t2 = (23 - Time.tm_hour)
t3 = (59 - Time.tm_min)