[Pkg-privacy-commits] [onionshare] 99/256: Update comments to be more accurate
Ulrike Uhlig
ulrike at moszumanska.debian.org
Fri May 26 12:53:22 UTC 2017
This is an automated email from the git hooks/post-receive script.
ulrike pushed a commit to branch master
in repository onionshare.
commit 1336a1c3b40933a39fc20732df4a76da002fff2b
Author: Micah Lee <micah at micahflee.com>
Date: Wed Feb 22 15:28:06 2017 -0800
Update comments to be more accurate
---
onionshare/web.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/onionshare/web.py b/onionshare/web.py
index 5fc329a..0b40005 100644
--- a/onionshare/web.py
+++ b/onionshare/web.py
@@ -169,7 +169,7 @@ def check_slug_candidate(slug_candidate, slug_compare = None):
abort(404)
-# If "Stop sharing automatically" is checked (stay_open == False), only allow
+# If "Stop After First Download" is checked (stay_open == False), only allow
# one download at a time.
download_in_progress = False
@@ -182,7 +182,7 @@ def index(slug_candidate):
add_request(REQUEST_LOAD, request.path)
- # Deny new downloads if "Stop sharing automatically" is checked and there is
+ # Deny new downloads if "Stop After First Download" is checked and there is
# currently a download
global stay_open, download_in_progress
deny_download = not stay_open and download_in_progress
@@ -210,7 +210,7 @@ def download(slug_candidate):
"""
check_slug_candidate(slug_candidate)
- # Deny new downloads if "Stop sharing automatically" is checked and there is
+ # Deny new downloads if "Stop After First Download" is checked and there is
# currently a download
global stay_open, download_in_progress
deny_download = not stay_open and download_in_progress
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/onionshare.git
More information about the Pkg-privacy-commits
mailing list