changeset 10394:ace1c1f6c46e

<oerjan> sled bin/edit//s,http,https,g
author HackBot
date Sat, 11 Mar 2017 01:28:38 +0000
parents 5fe5f3058da2
children c1a6de70613d
files bin/edit
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/bin/edit	Sat Mar 11 01:28:11 2017 +0000
+++ b/bin/edit	Sat Mar 11 01:28:38 2017 +0000
@@ -3,10 +3,10 @@
 import sys, os.path, re, urllib
 
 if len(sys.argv) < 2:
-  sys.exit('http://hackego.esolangs.org/edit/')
+  sys.exit('https://hackego.esolangs.org/edit/')
 
 f = os.path.realpath(sys.argv[1])
 f = re.sub(r"^/+hackenv/", "", f)
 if re.match(r"/|\.hg(?:/|ignore$|$)",f):
   sys.exit("File is not editable.")
-print 'http://hackego.esolangs.org/edit/' + urllib.quote(f)
+print 'https://hackego.esolangs.org/edit/' + urllib.quote(f)