From 647543ddc4cf2d559ab2e662349e7a3571340b50 Mon Sep 17 00:00:00 2001
From: b3yond <b3yond@riseup.net>
Date: Fri, 23 Jun 2017 22:09:56 +0200
Subject: [PATCH] updated readme to prioritize tasks

---
 .gitignore    | 3 ++-
 README.md     | 8 +++++---
 last_rt       | 0
 ticketfrei.py | 2 +-
 4 files changed, 8 insertions(+), 5 deletions(-)
 create mode 100644 last_rt

diff --git a/.gitignore b/.gitignore
index f426324..cf385b2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,7 @@
 *.swp
+*.pyc
 .idea/
-last_rt
+last_mention
 ticketfrei.cfg
 seen_toots.pickle
 seen_toots.pickle.part
diff --git a/README.md b/README.md
index eb466ce..986746f 100644
--- a/README.md
+++ b/README.md
@@ -47,16 +47,18 @@ Note that atm the good- & blacklist are still outside of ticketfrei.cfg, in sepa
 
 - [x] Twitter: Crawl mentions
 - [x] Mastodon: Crawl mentions
-- [ ] Write toots/tweets to database
+- [ ] Write toots/tweets to database/log
 - [x] Twitter: retweet people
 - [x] Mastodon: boost people
+<!--
 - [ ] Mastodon: toot who has been retweeted on twitter
 - [ ] Twitter: tweet who has been boosted on mastodon
+-->
 - [x] Twitter: access the API
 - [ ] Web UI that lets you easily delete toots/tweets per db id and mute the tweet author
 - [x] Write Bots as Classes to be easier implemented
 - [x] Create extra Class for the filter
 - [ ] Put as much as possible into ticketfrei.cfg
 - [ ] Make both bots run on their own *and* next to each other
-
-
+  - [ ] implement trigger class in retootbot
+  - [ ] read config in retweetbot
diff --git a/last_rt b/last_rt
new file mode 100644
index 0000000..e69de29
diff --git a/ticketfrei.py b/ticketfrei.py
index e6109c8..5319b78 100644
--- a/ticketfrei.py
+++ b/ticketfrei.py
@@ -14,7 +14,7 @@ if __name__ == '__main__':
     trigger = Trigger(config)
 
     mbot = RetootBot(config)
-    tbot = RetweetBot(config, trigger=trigger)
+    tbot = RetweetBot(trigger)
 
     try:
         statuses = []