Skip to content

Commit

Permalink
Merge pull request #593 from pacospace/correct-message
Browse files Browse the repository at this point in the history
Correct message provided to users
  • Loading branch information
sesheta committed Dec 10, 2021
2 parents ee1fa91 + f27ed13 commit 625ff66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/dependencyManagementUI.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -872,11 +872,11 @@ export class DependenciesManagementUI extends React.Component<IDependencyManagem

if ( result == undefined || result.error == true ) {

var error_msg = "No resolution engine was able to install dependencies, please contact Thoth team: "
var error_msg = "No resolution engine was able to lock dependencies, please contact Thoth team: "
if ( result != undefined ) {
console.debug("Pipenv resolution engine error:", result.error_msg)
_.set(ui_state, "pipenv_resolution_error_msg", result.error_msg.toString())
var error_msg = `No resolution engine was able to install dependencies! Please contact Thoth team: `
var error_msg = `No resolution engine was able to lock dependencies! Please contact Thoth team: `
}

_.set(ui_state, "status", "failed_re")
Expand Down

0 comments on commit 625ff66

Please sign in to comment.