Skip to content

Commit

Permalink
Stopped returning the error message on packagesmanager/cmd.py,
Browse files Browse the repository at this point in the history
due breaking backward compatibility with older commands.
  • Loading branch information
evandrocoan committed Oct 23, 2017
1 parent f6f6d92 commit b49f706
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packagesmanager/cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def kill_proc():

if short_errors:
show_error( message )
return False, output
return False

if is_vcs:

Expand Down Expand Up @@ -279,10 +279,10 @@ def kill_proc():

if len( output ) < 1:
console_write( message )
return False, output
return False

show_error(message)
return False, output
return False

if meaningful_output and self.debug and len(output) > 0:
console_write(output, indent=' ', prefix=False)
Expand Down

0 comments on commit b49f706

Please sign in to comment.