Queer European MD passionate about IT
Przeglądaj źródła

Merge branch 'develop' of ssh://gogs.davte.it:8445/Davte/davtelepot into develop

Davte 4 lat temu
rodzic
commit
187f80ac89
1 zmienionych plików z 9 dodań i 9 usunięć
  1. 9 9
      davtelepot/utilities.py

+ 9 - 9
davtelepot/utilities.py

@@ -25,33 +25,33 @@ from bs4 import BeautifulSoup
 
 weekdays = collections.OrderedDict()
 weekdays[0] = {
-    'en': "Sunday",
-    'it': "Domenica",
-}
-weekdays[1] = {
     'en': "Monday",
     'it': "Lunedì",
 }
-weekdays[2] = {
+weekdays[1] = {
     'en': "Tuesday",
     'it': "Martedì",
 }
-weekdays[3] = {
+weekdays[2] = {
     'en': "Wednesday",
     'it': "Mercoledì",
 }
-weekdays[4] = {
+weekdays[3] = {
     'en': "Thursday",
     'it': "Giovedì",
 }
-weekdays[5] = {
+weekdays[4] = {
     'en': "Friday",
     'it': "Venerdì",
 }
-weekdays[6] = {
+weekdays[5] = {
     'en': "Saturday",
     'it': "Sabato",
 }
+weekdays[6] = {
+    'en': "Sunday",
+    'it': "Domenica",
+}
 
 
 def sumif(iterable, condition):