From 33dfb54db2200278d58e954e6a035bb16c91becd Mon Sep 17 00:00:00 2001
From: Usama Tahir <usama.tahir@informatik.hs-fulda.de>
Date: Mon, 7 Aug 2023 11:00:31 +0500
Subject: [PATCH] demo1-getting-started.py converted to python 3 using 2to3
 library

---
 demo1-getting-started.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/demo1-getting-started.py b/demo1-getting-started.py
index 3030714..d7ef9cb 100644
--- a/demo1-getting-started.py
+++ b/demo1-getting-started.py
@@ -50,7 +50,7 @@ def main():
     # make sure to include ex_force_auth_version='3.x_password', as needed in our environment
     provider = get_driver(Provider.OPENSTACK)
 
-    print("Opening connection to %s as %s..." % (auth_url, auth_username))
+    print(("Opening connection to %s as %s..." % (auth_url, auth_username)))
 
     conn = provider(auth_username,
                     auth_password,
-- 
GitLab