fix syntax
diff --git a/plstackapi/openstack/driver.py b/plstackapi/openstack/driver.py
index 5a42d79..9d00976 100644
--- a/plstackapi/openstack/driver.py
+++ b/plstackapi/openstack/driver.py
@@ -19,7 +19,7 @@
         tenants = self.shell.keystone.tenants.findall(name=tenant_name)
         if not tenants:
             fields = {'tenant_name': tenant_name, 'enabled': enabled, 
-                      'description', description}  
+                      'description': description}  
             tenant = self.shell.keystone.tenants.create(**fields)
         else:
             tenant = tenants[0]