mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
convert.py now properly ignores paths
This commit is contained in:
@@ -24,7 +24,7 @@ def main(argv):
|
||||
action='append', default=[])
|
||||
options, args = parser.parse_args(argv)
|
||||
|
||||
ignored_paths = set(options.ignored_paths)
|
||||
ignored_paths = {os.path.abspath(p) for p in options.ignored_paths}
|
||||
|
||||
path = os.path.abspath(args[0]) if args else os.getcwd()
|
||||
convertables = []
|
||||
|
||||
Reference in New Issue
Block a user