Skip to content

Commit

Permalink
Merge pull request #68 from hughrun/3.1.1-prep
Browse files Browse the repository at this point in the history
prepare for 3.1.1 release
  • Loading branch information
hughrun authored May 1, 2021
2 parents 999abcb + 084a256 commit 2c50e89
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ config.yaml
_assets
pypi-readme.md
archive
dist
dist
.pytest_cache/*
12 changes: 6 additions & 6 deletions ephemetoot/ephemetoot.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def print_rate_limit_message(mastodon):

def retry_on_error(options, mastodon, toot, attempts=0):

if attempts < 6:
if attempts < 6:
try:
console_print(
"Attempt " + str(attempts) + " at " + datestamp_now(), options, False
Expand Down Expand Up @@ -587,11 +587,11 @@ def check_batch(config, options, mastodon, user_id, timeline, deleted_count=0):
except IndexError:
if not options.quiet or options.quiet <= 1:
print(
"No toots found for "
+ config["username"]
+ "@"
+ config["base_url"]
+ ".\n"
"No toots found for "
+ config["username"]
+ "@"
+ config["base_url"]
+ ".\n"
)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ephemetoot"
version = "3.1.1a1"
version = "3.1.1"
description = "A command line tool to delete your old toots"
authors = ["Hugh Rundle <[email protected]>"]
license = "GPL-3.0-or-later"
Expand Down

0 comments on commit 2c50e89

Please sign in to comment.