Skip to content

Commit

Permalink
Merge pull request #928 from efiop/master
Browse files Browse the repository at this point in the history
status: print locked warning only when stage is locked
  • Loading branch information
efiop authored Jul 20, 2018
2 parents 627412f + 7cde8cb commit 2ee9525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dvc/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def _local_status(self, target=None):
stages = self.active_stages()

for stage in stages:
if not stage.locked:
if stage.locked:
msg = 'DVC file \'{}\' is locked. Its dependecies are not ' \
'going to be shown in status output.'
self.logger.warn(msg.format(stage.relpath))
Expand Down

0 comments on commit 2ee9525

Please sign in to comment.