Skip to content

Commit

Permalink
Fix incorrect arguments (apache#20638)
Browse files Browse the repository at this point in the history
  • Loading branch information
PApostol authored Jan 3, 2022
1 parent 58452f9 commit b1b8f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/airflow-license
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def parse_license_file(project_name):
path = f"../licenses/LICENSE-{name}.txt"
if os.path.exists(path):
data = " ".join(line.strip() for line in open(path)).lower()
data = data.translate(None, string.punctuation)
data = data.translate(string.punctuation)
for k in _licenses:
matches = 0
for v in _licenses[k]:
Expand Down

0 comments on commit b1b8f30

Please sign in to comment.