File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Orange/canvas/application Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -774,19 +774,19 @@ def _next(self):
774774 try :
775775 if command == Install :
776776 self .setStatusMessage (
777- "Installing {}" .format (pkg .installable .name ))
777+ "Installing {}" .format (cleanup ( pkg .installable .name ) ))
778778 if self .conda :
779779 self .conda .install (pkg .installable , raise_on_fail = False )
780780 self .pip .install (pkg .installable )
781781 elif command == Upgrade :
782782 self .setStatusMessage (
783- "Upgrading {}" .format (pkg .installable .name ))
783+ "Upgrading {}" .format (cleanup ( pkg .installable .name ) ))
784784 if self .conda :
785785 self .conda .upgrade (pkg .installable , raise_on_fail = False )
786786 self .pip .upgrade (pkg .installable )
787787 elif command == Uninstall :
788788 self .setStatusMessage (
789- "Uninstalling {}" .format (pkg .local .project_name ))
789+ "Uninstalling {}" .format (cleanup ( pkg .local .project_name ) ))
790790 if self .conda :
791791 try :
792792 self .conda .uninstall (pkg .local , raise_on_fail = True )
You can’t perform that action at this time.
0 commit comments