diff options
author | tekireeva <[email protected]> | 2022-02-10 16:51:38 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:51:38 +0300 |
commit | e9d6dd2e511aaaec9e6182b7ae9327dce82a051d (patch) | |
tree | b0c986cf74d10d4aea897f76c8dcec5ee84efc4f /build/scripts/fs_tools.py | |
parent | 597c5894e3c8cdfa680c5a5e8c2e69b61dce8254 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'build/scripts/fs_tools.py')
-rw-r--r-- | build/scripts/fs_tools.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/scripts/fs_tools.py b/build/scripts/fs_tools.py index dec4c349c89..1a999f2cf02 100644 --- a/build/scripts/fs_tools.py +++ b/build/scripts/fs_tools.py @@ -6,9 +6,9 @@ import sys import shutil import errno -import process_command_files as pcf - - +import process_command_files as pcf + + def link_or_copy(src, dst): try: if platform.system().lower() == 'windows': @@ -25,7 +25,7 @@ def link_or_copy(src, dst): if __name__ == '__main__': mode = sys.argv[1] - args = pcf.get_args(sys.argv[2:]) + args = pcf.get_args(sys.argv[2:]) if mode == 'copy': shutil.copy(args[0], args[1]) |