From 001fbe798f2d493a421117d21dc040c2d2aae21c Mon Sep 17 00:00:00 2001 From: Maxim Kulkin Date: Thu, 7 Nov 2013 17:38:34 +0400 Subject: [PATCH] Fixed Keystone auththoken inspection type problem --- rubick/inspections/keystone_authtoken.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rubick/inspections/keystone_authtoken.py b/rubick/inspections/keystone_authtoken.py index c6dba81..d1c2857 100644 --- a/rubick/inspections/keystone_authtoken.py +++ b/rubick/inspections/keystone_authtoken.py @@ -47,7 +47,7 @@ class KeystoneAuthtokenSettingsInspection(Inspection): ) auth_host = get_value('auth_host') - auth_port = get_value('auth_port') + auth_port = int(get_value('auth_port')) auth_protocol = get_value('auth_protocol') admin_user = get_value('admin_user') # admin_password = get_value('admin_password')