From 67243efc605e2d701d8317e2317d0c021c37de25 Mon Sep 17 00:00:00 2001 From: gyg-github Date: Tue, 28 Aug 2018 21:38:39 -0400 Subject: [PATCH] update installer.py removed formatting symbol f'', since "....x" is considered as a type in the formatting. actual directory is just "https://github.com/nodesource/distributions/blob/master/deb/setup_8.x" --- tljh/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tljh/installer.py b/tljh/installer.py index 6d5009a..51d4cfb 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -92,7 +92,7 @@ sckuXINIU3DFWzZGr0QrqkuE/jyr7FXeUJj9B7cLo+s/TXo+RaVfi3kOc9BoxIvy -----END PGP PUBLIC KEY BLOCK----- """.strip() apt.trust_gpg_key(key) - apt.add_source('nodesource', f'https://deb.nodesource.com/node_8.x', 'main') + apt.add_source('nodesource', 'https://deb.nodesource.com/node_8.x', 'main') apt.install_packages(['nodejs'])