aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Goes <[email protected]>2019-03-21 20:37:35 -0600
committerGravatar GitHub <[email protected]>2019-03-21 20:37:35 -0600
commitbfd143360e558ca1da24ffd59b6d31a02b4d81db (patch)
treead6e95445441a39e5f876cb86e08e6356c8649c1
parentMerge pull request #144 from MadisonMcdonald/encoding-fix (diff)
parentudpated gitignore for .DS_Store as well as removed it from PR. (diff)
Merge pull request #151 from python-discord/pride
set up bot directory for pride event
-rw-r--r--.gitignore1
-rw-r--r--bot/seasons/pride/__init__.py17
2 files changed, 18 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 8f8974f9..8f848483 100644
--- a/.gitignore
+++ b/.gitignore
@@ -111,3 +111,4 @@ venv.bak/
# jetbrains
.idea/
+.DS_Store \ No newline at end of file
diff --git a/bot/seasons/pride/__init__.py b/bot/seasons/pride/__init__.py
new file mode 100644
index 00000000..d8a7e34b
--- /dev/null
+++ b/bot/seasons/pride/__init__.py
@@ -0,0 +1,17 @@
+from bot.seasons import SeasonBase
+
+
+class Pride(SeasonBase):
+ """
+ No matter your origin, identity or sexuality, we come together to celebrate each and everyone's individuality.
+ Feature contributions to ProudBot is encouraged to commemorate the history and challenges of the LGBTQ+ community.
+ Happy Pride Month
+ """
+
+ name = "pride"
+ bot_name = "ProudBot"
+ greeting = "Happy Pride Month!"
+
+ # Duration of season
+ start_date = "01/06"
+ end_date = "30/06"