Skip to content

Commit

Permalink
fix: [appinstallation] silly fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cvandeplas committed Oct 21, 2024
1 parent f7f75c1 commit 661d03c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sysdiagnose/parsers/appinstallation.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_log_files(self) -> list:
def execute(self) -> list | dict:
try:
result = []
for filename in self.get_log_files()[0]:
for filename in self.get_log_files():
db_json = misc.json_serializable(sqlite2json.sqlite2struct(filename))
skipped = set()
for key, values in db_json.items():
Expand Down

0 comments on commit 661d03c

Please sign in to comment.