Skip to content

Commit

Permalink
version 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
elesiuta committed May 29, 2021
1 parent 795078e commit 927e415
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions picosnitch.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,8 @@ def loop(vt_api_key: str = ""):
signal.signal(signal.SIGINT, lambda *args: terminate(snitch, p_snitch_mon, q_term, q_vt_term))
# snitch init checks
if p_snitch_mon is None:
snitch["Errors"].append(time.ctime() + " Snitch subprocess init failed, __name__ != __main__, try: python -m picosnitch")
toast("Snitch subprocess init failed, try: python -m picosnitch", file=sys.stderr)
snitch["Errors"].append(time.ctime() + " Snitch subprocess init failed, __name__ != __main__, try: sudo -E python -m picosnitch")
toast("Snitch subprocess init failed, try: sudo -E python -m picosnitch", file=sys.stderr)
sys.exit(1)
# check if there are pending virtustotal results from last time
get_vt_results(snitch, q_vt_pending, True)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="picosnitch",
version="0.3.1",
version="0.3.2",
description="See which processes make remote network connections",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 927e415

Please sign in to comment.