1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

; Spelling fixes

This commit is contained in:
Paul Eggert 2019-12-10 20:04:36 -08:00
parent 0940296ebe
commit b0f20651e3
41 changed files with 91 additions and 93 deletions

View file

@ -78,7 +78,7 @@ def immediate_deps(pkg):
## Split into dependencies
dependencies = dependencies.strip().split(" ")
## Remove > signs TODO can we get any other punctation here?
## Remove > signs TODO can we get any other punctuation here?
dependencies = [d.split(">")[0] for d in dependencies if d]
dependencies = [d for d in dependencies if not d == "None"]