Skip to content

Commit

Permalink
Fix missing expression update
Browse files Browse the repository at this point in the history
  • Loading branch information
havatv committed May 16, 2020
1 parent c8f88d8 commit 75885f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resource_sharing/gui/resource_sharing_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ def install_finished(self):
message = message + 's'
if 'expressions' in config.COLLECTIONS[self._selected_collection_id].keys():
number = config.COLLECTIONS[self._selected_collection_id]['expressions']
message = message + '\n<li> ' + str(config.COLLECTIONS[self._selected_collection_id]['expressions']) + ' expression file'
message = message + '\n<li> ' + str(number) + ' expression file'
if number > 1:
message = message + 's'
if 'processing' in config.COLLECTIONS[self._selected_collection_id].keys():
Expand Down

0 comments on commit 75885f2

Please sign in to comment.