Skip to content

Commit 88a4c1c

Browse files
authored
Update config_flow.py (#9)
Specify entries with platform
1 parent 71c6947 commit 88a4c1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/file_plusplus/config_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ async def _async_handle_step(
107107
if not await self.validate_file_path(user_input[CONF_FILE_PATH]):
108108
errors[CONF_FILE_PATH] = "not_allowed"
109109
else:
110-
title = f"{DEFAULT_NAME} [{user_input[CONF_FILE_PATH]}]"
110+
title = f"{platform.capitalize()} [{user_input[CONF_FILE_PATH]}]"
111111
data = deepcopy(user_input)
112112
options = {}
113113
for key, value in user_input.items():

0 commit comments

Comments
 (0)