Enis Afgan 10 лет назад
Родитель
Сommit
18a589a485
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      cloudbridge/providers/interfaces.py

+ 1 - 1
cloudbridge/providers/interfaces.py

@@ -29,7 +29,7 @@ class CloudProviderFactory():
                         return None
                 else:
                     # Return latest available version
-                    return sorted((for item in provider["implementation"]), key=lambda x: x["version"])[-1]
+                    return sorted((item for item in provider["implementation"]), key=lambda x: x["version"])[-1]
         return None
 
     def get_interface_V1(self, name, config):