diff --git a/custom_components/carbu_com/config_flow.py b/custom_components/carbu_com/config_flow.py index 71ba866..c7c2ad4 100644 --- a/custom_components/carbu_com/config_flow.py +++ b/custom_components/carbu_com/config_flow.py @@ -404,7 +404,7 @@ async def async_step_edit(self, user_input): self.config_entry, data=user_input ) self._errors = {} - custom_title = f"{NAME} {user_input.get('postalcode')} {self._init_info.get('town')} {user_input.get('country')}" + custom_title = f"{NAME} {user_input.get('postalcode')} {user_input.get('town')} {user_input.get('country')}" return self.async_create_entry(title=custom_title, data=None) else: self._errors["base"] = "api_key_error" \ No newline at end of file diff --git a/custom_components/carbu_com/manifest.json b/custom_components/carbu_com/manifest.json index 6e07290..9017b68 100644 --- a/custom_components/carbu_com/manifest.json +++ b/custom_components/carbu_com/manifest.json @@ -9,5 +9,5 @@ "iot_class": "cloud_polling", "issue_tracker": "https://github.com/myTselection/carbu_com/issues", "requirements": ["bs4","requests","voluptuous", "ratelimit"], - "version": "11.2.0" + "version": "11.2.1" }