Chromium Code Reviews| Index: client/utils/fs.py |
| diff --git a/client/utils/fs.py b/client/utils/fs.py |
| index db03e894056d54ec7746705667cc71b34e2a9ede..7e24dba3594e7eb4c155a4dd14575df7995ec561 100644 |
| --- a/client/utils/fs.py |
| +++ b/client/utils/fs.py |
| @@ -90,8 +90,6 @@ def symlink(source, link_name): |
| return os.symlink(source, extend(link_name)) |
| - |
| - |
| ## shutil |
| @@ -103,6 +101,9 @@ def rmtree(path, *args, **kwargs): |
| return shutil.rmtree(extend(path), *args, **kwargs) |
| +copyfileobj = shutil.copyfileobj |
| + |
| + |
| ## The rest |