Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions dvc/repo/checkout.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ def _checkout(
total=total, unit="file", desc="Checkout", disable=total == 0
) as pbar:
for stage in stages:
if stage.locked:
logger.warning(
"DVC-file '{path}' is locked. Its dependencies are"
" not going to be checked out.".format(path=stage.relpath)
)

failed.extend(
stage.checkout(force=force, progress_callback=pbar.update_desc)
)
Expand Down
7 changes: 6 additions & 1 deletion dvc/repo/pull.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
from __future__ import unicode_literals

from . import locked
import logging

from dvc.repo import locked


logger = logging.getLogger(__name__)


@locked
Expand Down