From fce207bafcb10b973683144d8f584ce32111af80 Mon Sep 17 00:00:00 2001 From: FrancescoFdd5 Date: Wed, 8 Jan 2020 20:06:14 +0100 Subject: [PATCH] Updated Docker Installation (textile) --- Docker-Installation.textile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Docker-Installation.textile b/Docker-Installation.textile index 7d49020..8111646 100644 --- a/Docker-Installation.textile +++ b/Docker-Installation.textile @@ -15,8 +15,7 @@ yum install git python # Enter python command interpreter:
python
# Generate random number using Python: -

-import random, string
+
import random, string
 haystack = string.ascii_letters + string.digits + string.punctuation
 print(''.join([random.SystemRandom().choice(haystack) for _ in range(50)]))