diff options
-rw-r--r-- | doc/maintenance.md | 4 | ||||
-rw-r--r-- | service/pixelated/maintenance.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/maintenance.md b/doc/maintenance.md index 38c18bf8..f2b482b7 100644 --- a/doc/maintenance.md +++ b/doc/maintenance.md @@ -46,9 +46,9 @@ optional arguments: The commands you can run are: * reset - Use this to remove all mails from your account. Existing encryption keys like your GnuPG key is not affected -* sync - Sync your soledad database * load-mails - Loads existing mails into your account -* dump-soledad- Get a soledad database dump. Mostly for debugging use cases +* dump-soledad - Get a soledad database dump. Mostly for debugging use cases +* sync - Sync your soledad database Like with other such tools, to get detailed help for a single command, call it with the --help option. diff --git a/service/pixelated/maintenance.py b/service/pixelated/maintenance.py index 4bb06ceb..63a0fa0e 100644 --- a/service/pixelated/maintenance.py +++ b/service/pixelated/maintenance.py @@ -153,7 +153,7 @@ def load_mails(args, mail_paths): def flush_to_soledad(args, finalize): leap_session, soledad = args - def after_sync(): + def after_sync(_): finalize.callback((leap_session, soledad)) d = soledad.sync() |