Skip to content

Commit

Permalink
REFACTOR-#2083: Rename LISCENSE_HEADER to LICENSE_HEADER. (#2082)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael L Heuer <[email protected]>
  • Loading branch information
heuermh authored Sep 16, 2020
1 parent 51ed0ae commit c955d50
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion modin/apply_license_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
rootdir = dirname(abspath(__file__))
exclude_files = ["_version.py"]

with open("{}{}".format(dirname(rootdir), "/LISCENSE_HEADER"), "r") as f:
with open("{}{}".format(dirname(rootdir), "/LICENSE_HEADER"), "r") as f:
# Lines to check each line individually
header_lines = f.readlines()

Expand Down
2 changes: 1 addition & 1 deletion modin/test/test_headers.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


def test_headers():
with open("{}{}".format(dirname(rootdir), "/LISCENSE_HEADER"), "r") as f:
with open("{}{}".format(dirname(rootdir), "/LICENSE_HEADER"), "r") as f:
# Lines to check each line individually
header_lines = f.readlines()

Expand Down

0 comments on commit c955d50

Please sign in to comment.