diff options
Diffstat (limited to 'scripts/pastit.py')
-rwxr-xr-x | scripts/pastit.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/pastit.py b/scripts/pastit.py index 29aa3cd..b0989ed 100755 --- a/scripts/pastit.py +++ b/scripts/pastit.py @@ -14,7 +14,7 @@ Arguments: Options: -u, --url url Alternate url of the pasteme - Default is http://paste.devys.org/ + Default is https://paste.devys.org/ """ import sys @@ -55,8 +55,8 @@ def manage(excep, url=None): except (requests.exceptions.InvalidURL, requests.exceptions.InvalidSchema) as e: print("Invalid URL: %s" % url, file=sys.stderr) - if not url.startswith("http"): - print("Perhaps you meant http://%s" % url, file=sys.stderr) + if not url.startswith("https"): + print("Perhaps you meant https://%s" % url, file=sys.stderr) sys.exit(1) @@ -69,7 +69,7 @@ def main(): return - url = args["--url"] or "http://paste.devys.org/" + url = args["--url"] or "https://paste.devys.org/" if args["FILE"]: try: |