Skip to content

Commit

Permalink
add trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
515hikaru committed Oct 26, 2019
1 parent bef52ae commit ef82b1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dephell/converters/sdist.py
Expand Up @@ -184,15 +184,15 @@ def _write_additional_files(self, *, tar, project, subdir):
name=str(tests_path),
arcname=subdir + tests_path.name,
filter=self._set_uid_gid,
recursive=False
recursive=False,
)
for path in subpaths:
if '__pycache__' not in str(path): # exclude cache files
tar.add(
name=str(path),
arcname=subdir + str(path),
filter=self._set_uid_gid,
recursive=False
recursive=False,
)

def _write_content(self, tar, path: str, content) -> None:
Expand Down

0 comments on commit ef82b1f

Please sign in to comment.