Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'letshelp-certbot/letshelp_certbot/apache.py')
-rwxr-xr-xletshelp-certbot/letshelp_certbot/apache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/letshelp-certbot/letshelp_certbot/apache.py b/letshelp-certbot/letshelp_certbot/apache.py
index 50f3c5ef6..ebe4e3671 100755
--- a/letshelp-certbot/letshelp_certbot/apache.py
+++ b/letshelp-certbot/letshelp_certbot/apache.py
@@ -74,7 +74,7 @@ def make_and_verify_selection(server_root, temp_dir):
ans = six.moves.input("(Y)es/(N)o: ").lower()
if ans.startswith("y"):
return
- elif ans.startswith("n"):
+ if ans.startswith("n"):
sys.exit("Your files were not submitted")
@@ -159,7 +159,7 @@ def safe_config_file(config_file):
empty_or_all_comments = False
if line.startswith("-----BEGIN"):
return False
- elif ":" not in line:
+ if ":" not in line:
possible_password_file = False
# If file isn't empty or commented out and could be a password file,
# don't include it in selection. It is safe to include the file if