]> gitweb.pimeys.fr Git - today.git/commitdiff
Pour ignorer les données qu'on n'a pas à l'initialisation
authorVincent Le Gallic <legallic@crans.org>
Sun, 5 Jan 2014 22:24:05 +0000 (23:24 +0100)
committerVincent Le Gallic <legallic@crans.org>
Sun, 5 Jan 2014 22:24:05 +0000 (23:24 +0100)
today_server.py

index 7e31652e9d049afb771de33c3857478d499db901..fbd650f1d109b7d02def75a06c4417880be91f41 100755 (executable)
@@ -209,8 +209,11 @@ if __name__ == "__main__":
         DEBUG = True
     if sys.argv[1] == "check":
         news = fetch_all()
-        olds = get_file()
-        olds.update(news)
+        if "--init" in sys.argv:
+            olds = news
+        else:
+            olds = get_file()
+            olds.update(news)
         update_file(olds)
     elif sys.argv[1] == "whatsup":
         news = get_file()