aboutsummaryrefslogtreecommitdiffstats
path: root/install.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2016-11-03 09:25:22 +0200
committerFilipp Lepalaan <filipp@mac.com>2016-11-03 09:25:22 +0200
commit920bda8b69d2f2c078d369fe25684c437c50e40f (patch)
treece7886a78524d39c0a146045df91098cd914368c /install.py
parent31ad3792ab44c7a1f3c66f54488b5e716c23990a (diff)
downloadServo-920bda8b69d2f2c078d369fe25684c437c50e40f.tar.gz
Servo-920bda8b69d2f2c078d369fe25684c437c50e40f.tar.bz2
Servo-920bda8b69d2f2c078d369fe25684c437c50e40f.zip
Use url name instead of view
Diffstat (limited to 'install.py')
-rwxr-xr-xinstall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.py b/install.py
index 6c3ac6d..97f37c9 100755
--- a/install.py
+++ b/install.py
@@ -77,7 +77,7 @@ subj = "/C=%s/ST=%s/L=%s/O=%s/OU=%s/CN=%s" % (
)
call(['openssl', 'req', '-nodes', '-x509', '-newkey', 'rsa:2048',
- '-days', '365', '-subj', subj,
- '-keyout', 'servo.key', '-out', 'servo.crt'])
+ '-days', '365', '-subj', subj,
+ '-keyout', 'servo.key', '-out', 'servo.crt'])
print("Your Servo installation is ready for action at https://%s" % args['hostname'])