diff options
author | James McCoy <jamessan@jamessan.com> | 2018-06-29 21:08:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-29 21:08:16 -0400 |
commit | d088331ea3a6e91d5c3ef8c4cff7280805515819 (patch) | |
tree | 34d62fb22c877ad55bdb002179c1542d53518091 /scripts/gen_api_vimdoc.py | |
parent | a98a1d10e3c48aef3191df3c30d881e0d4b1e337 (diff) | |
parent | 85d5bf81b94d2eaebb8bbbe9c676c6b665f14b9e (diff) | |
download | rneovim-d088331ea3a6e91d5c3ef8c4cff7280805515819.tar.gz rneovim-d088331ea3a6e91d5c3ef8c4cff7280805515819.tar.bz2 rneovim-d088331ea3a6e91d5c3ef8c4cff7280805515819.zip |
Merge pull request #8661 from jamessan/gen_api_vimdoc
gen_api_vimdoc: Make executable and change #! to python3
Diffstat (limited to 'scripts/gen_api_vimdoc.py')
-rwxr-xr-x[-rw-r--r--] | scripts/gen_api_vimdoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen_api_vimdoc.py b/scripts/gen_api_vimdoc.py index 69f70f6e2b..4c99686faf 100644..100755 --- a/scripts/gen_api_vimdoc.py +++ b/scripts/gen_api_vimdoc.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Parses Doxygen XML output to generate Neovim's API documentation. This would be easier using lxml and XSLT, but: |