Skip to content
Snippets Groups Projects
Commit 984caee9 authored by Lukas Ruge's avatar Lukas Ruge
Browse files

fix for bits and bäume

parent ee10bf85
No related branches found
No related tags found
No related merge requests found
......@@ -4,34 +4,34 @@ import eventgenutils as utils
#################################################
# set true if you want to generate files for that event type
#################################################
OPENSPACE = True
OPENSPACE = False
# every wednesday 19:00 to 23:59:59 but not between (and including) 24.12 and 1.1
REINIGUNG = True
REINIGUNG = False
# wednesday from 09:00 to 18:00
PLENUM = True
PLENUM = False
# second thursday of the month, except in november, where it is the third
OSM = True
OSM = False
# vierter donnerstag in ungeraden monaten
SWK = False
# manchmal am 1. Donnerstag. Aber oft auch nicht.
BITSUNDBAEUME = False
# jeden zweiten Dienstag im Monat um 18:31... ich vermute mal nicht im Januar?
FFHLORGA = True
BITSUNDBAEUME = True
# jeden zweiten Dienstag im Monat um 18:31...
FFHLORGA = False
# jeden dritten Donnerstag im Monat 19:00 bis 22:00 Uhr
NOOK = True
NOOK = False
# zweiter freitag im November (und der darauf folgende Samstag)
FUENF_MIN_TERMINE = True
FUENF_MIN_TERMINE = False
# Üblicherweise Zweiter Mittwoch im ersten Monat des Quartals
SOMMERFEST = False
# Üblicherweise der erste Samstag nach dem 10 Mai. 15:00 bis 23:59
TAG_DES_OFFENEN_HACKSPACES = False
# https://wiki.hackerspaces.org/International_Open_Hackerspace_Day
# The International Open Hackerspace Day is happening every last Saturday of March.
MOINC3 = True
MOINC3 = False
# Congress.
MAUS_TUEROEFFNER_TAG = False
# Der Maus Türöffner Tag ist immer am Tag der Deutschen Einheit
GETTING_SPACE_CLEAN = True
GETTING_SPACE_CLEAN = False
# Erster Montag des Monats, außer das ist der 01.01 oder 01.05, dann der zweite Montag dieser Monate
#################################################
......@@ -73,7 +73,7 @@ def is_osm(_date_candidate):
def is_bits_und_baeume(_date_candidate):
if not utils.is_january(_date_candidate) and utils.is_nth_tuesday_of_month(_date_candidate, 1):
if utils.is_nth_tuesday_of_month(_date_candidate, 2):
return True
return False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment