Skip to content

Commit

Permalink
Merge pull request #785 from Johann-PLW/main
Browse files Browse the repository at this point in the history
Update ileapp.py
  • Loading branch information
Johann-PLW authored Jul 11, 2024
2 parents ec1bded + ed5cc36 commit b1312b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ileapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ def main():
plugins_parsed_first = []

for plugin in available_plugins:
if plugin.name == 'lastbuild':
if plugin.module_name == 'lastBuild':
plugins_parsed_first.append(plugin)
elif plugin.name != 'iTunesBackupInfo':
elif plugin.module_name != 'iTunesBackupInfo':
plugins.append(plugin)

selected_plugins = plugins.copy()
Expand Down
4 changes: 2 additions & 2 deletions ileappGUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ def select_output():
output_entry.insert(0, output_filename)


# GUI layout
## Case Data
def case_data():
# GUI layout
## Case Data
'''Add Case Data window'''
global casedata

Expand Down

0 comments on commit b1312b1

Please sign in to comment.