-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The twarc command catches SIGTERM so that users can ctrl-c to stop the process. But it did so quietly, which could be perplexing when users put twarc into the background and then logged out (which can cause SIGTERM being sent to the process). To aid in diagnosing when/why things stop this commit adds logging to when twarc is shutting down. fixes #319
- Loading branch information
Showing
3 changed files
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = '1.8.1' # also in setup.py | ||
__version__ = '1.8.2' # also in setup.py | ||
|
||
from .client import Twarc | ||
from .command import main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters