From fd26cb9e1eb62967dd2ac6776bddfcaa6b395435 Mon Sep 17 00:00:00 2001 From: Euan Kemp Date: Wed, 11 May 2016 17:52:53 -0700 Subject: [PATCH] cluster: make gen-uid python3 compatible --- cluster/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/common.sh b/cluster/common.sh index 030101e489a..470963a90bc 100755 --- a/cluster/common.sh +++ b/cluster/common.sh @@ -209,7 +209,7 @@ function gen-kube-bearertoken() { # Vars set: # KUBE_UID function gen-uid { - KUBE_UID=$(python -c 'import uuid; print uuid.uuid1().fields[0]') + KUBE_UID=$(python -c 'import uuid; print(uuid.uuid1().fields[0])') }