Skip to content

Commit 7c569df

Browse files
authored
Merge pull request #4 from fterh/hotfix-scheduling
Hotfix scheduling
2 parents 74cd58e + 3f37e74 commit 7c569df

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ A list of valid actions is provided by `DatabaseActionEnum` in the
5959
`database` module: `ERROR`, `SKIP`, and `SUCCESS`.
6060

6161
## Changelog
62+
### v0.2.2-beta
63+
* Fix scheduling bug
64+
6265
### v0.2.1-beta
6366
* Remove ricemedia.co from list of supported sites (incompatibility)
6467
* Fix start script to run immediately

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
RUN_EVERY = 2
1212

1313
BOT = {
14-
"VERSION": "0.2.1-beta",
14+
"VERSION": "0.2.2-beta",
1515
"REPO_LINK": "https://github.com/fterh/sneakpeek",
1616
"CONTRIBUTE_LINK": "https://github.com/fterh/sneakpeek"
1717
}

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ def start():
2727

2828

2929
if __name__ == "__main__":
30+
start()
3031
while True:
31-
start()
3232
schedule.run_pending()
3333
print("Sleeping")
3434
time.sleep(1)

0 commit comments

Comments
 (0)