Skip to content

Commit 1909ec8

Browse files
authored
Merge pull request #135 from rackerlabs/fix_lint
Fix lint error in utils.py
2 parents b746163 + 0ee7765 commit 1909ec8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lambda_uploader/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ def copy_tree(src, dest, ignore=None, include_parent=False):
5353
LOG.debug("Copying %s to %s" % (path, pkg_path))
5454
if os.path.islink(path):
5555
linkto = os.readlink(path)
56-
os.symlink(linkto.replace(src, dest, 1), os.path.join(pkg_path, filename))
56+
os.symlink(linkto.replace(src, dest, 1),
57+
os.path.join(pkg_path, filename))
5758
else:
5859
shutil.copy(path, pkg_path)
5960

0 commit comments

Comments
 (0)