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)]))