diff options
author | Leif Lindholm <leif.lindholm@linaro.org> | 2019-09-18 09:22:15 +0100 |
---|---|---|
committer | Leif Lindholm <leif.lindholm@linaro.org> | 2019-10-04 11:18:22 +0100 |
commit | c1bcb2258c1888ab237163d9a5d59f21c10650d3 (patch) | |
tree | b5444f559aacb606043eb3ecdad3f7e40a7e5b5e /BaseTools/Source/Python/Common | |
parent | 61af5f249495b18f45ca164376c871081448c0e4 (diff) | |
download | edk2-c1bcb2258c1888ab237163d9a5d59f21c10650d3.tar.gz edk2-c1bcb2258c1888ab237163d9a5d59f21c10650d3.tar.bz2 edk2-c1bcb2258c1888ab237163d9a5d59f21c10650d3.zip |
BaseTools: add missing newlines at end of files
Some scripts in Source/Python were missing newlines at end of files,
so add them.
Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
Reviewed-by: Bob Feng <bob.c.feng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
Diffstat (limited to 'BaseTools/Source/Python/Common')
-rw-r--r-- | BaseTools/Source/Python/Common/DataType.py | 2 | ||||
-rwxr-xr-x | BaseTools/Source/Python/Common/GlobalData.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/BaseTools/Source/Python/Common/DataType.py b/BaseTools/Source/Python/Common/DataType.py index 8ae1bd28fa..5d49afb0a9 100644 --- a/BaseTools/Source/Python/Common/DataType.py +++ b/BaseTools/Source/Python/Common/DataType.py @@ -532,4 +532,4 @@ PACK_CODE_BY_SIZE = {8:'=Q', 0:'=B',
16:""}
-TAB_COMPILER_MSFT = 'MSFT'
\ No newline at end of file +TAB_COMPILER_MSFT = 'MSFT'
diff --git a/BaseTools/Source/Python/Common/GlobalData.py b/BaseTools/Source/Python/Common/GlobalData.py index 8eb72aa1d6..74c6d0079b 100755 --- a/BaseTools/Source/Python/Common/GlobalData.py +++ b/BaseTools/Source/Python/Common/GlobalData.py @@ -129,4 +129,4 @@ file_lock = None # Common dictionary to share platform libraries' constant Pcd
libConstPcd = None
# Common dictionary to share platform libraries' reference info
-Refes = None
\ No newline at end of file +Refes = None
|