Skip to content

Commit a46f59c

Browse files
committed
STY: unlock: Import op.path as op
1 parent 643bd78 commit a46f59c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datalad/interface/unlock.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from collections import defaultdict
1616
import logging
1717

18-
from os.path import join as opj
18+
import os.path as op
1919

2020
from six import text_type
2121

@@ -143,7 +143,7 @@ def __call__(
143143
ds = Dataset(ds_path)
144144
for r in ds.repo.unlock(files):
145145
yield get_status_dict(
146-
path=opj(ds.path, r),
146+
path=op.join(ds.path, r),
147147
status='ok',
148148
type='file',
149149
**res_kwargs)

0 commit comments

Comments
 (0)