Skip to content

Commit 1c3ae20

Browse files
committed
Rename shed_ignore to ignore and style fixes.
1 parent cb1c335 commit 1c3ae20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

planemo/shed.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ def build_tarball(tool_path):
123123
fd, temp_path = mkstemp()
124124
repo_config = shed_repo_config(tool_path)
125125
ignore_list = []
126-
for shed_ignore in repo_config.get('shed_ignore', []):
127-
ignore_list.extend( glob.glob( os.path.join(tool_path, shed_ignore) ) )
126+
for shed_ignore in repo_config.get('ignore', []):
127+
ignore_list.extend(glob.glob(os.path.join(tool_path, shed_ignore)))
128128
try:
129129
with tarfile.open(temp_path, "w:gz") as tar:
130130
for name in os.listdir(tool_path):

0 commit comments

Comments
 (0)