We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ec63cc commit ce85aa6Copy full SHA for ce85aa6
guake/customcommands.py
@@ -65,11 +65,11 @@ def build_menu(self):
65
cust_comms = self._load_json(self.get_file_path())
66
if not cust_comms:
67
return None
68
- try:
69
- for obj in cust_comms:
+ for obj in cust_comms:
+ try:
70
self._parse_custom_commands(obj, menu)
71
- except AttributeError:
72
- return None
+ except AttributeError:
+ log.error("Error parsing %s", obj)
73
return menu
74
75
def _parse_custom_commands(self, json_object, menu):
0 commit comments