We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cdda8e commit 9a29701Copy full SHA for 9a29701
nitrokeyapp/update.py
@@ -150,6 +150,9 @@ def confirm_update_same_version(self, version: Version) -> None:
150
logger.info("OK clicked (confirm same version)")
151
152
def confirm_extra_information(self, txt: List[str]) -> None:
153
+ if len(txt) == 0:
154
+ return
155
+
156
res = self.run_confirm_dialog("Confirm extra information", " ".join(txt))
157
if not res:
158
logger.info("Cancel clicked (confirm extra info)")
0 commit comments