diff options
| author | DasIch <dasdasich@gmail.com> | 2010-05-16 22:24:20 +0200 |
|---|---|---|
| committer | DasIch <dasdasich@gmail.com> | 2010-05-16 22:24:20 +0200 |
| commit | 11765efc0e1f4f375c2389fd57456e8954d1bf42 (patch) | |
| tree | fe446d3dc1f72019b5f48f37e8dd1d5430a8b842 /utils/convert.py | |
| parent | b376f209943055f03bb451894cda26a13b864b75 (diff) | |
| download | sphinx-11765efc0e1f4f375c2389fd57456e8954d1bf42.tar.gz | |
convert.py now properly ignores paths
Diffstat (limited to 'utils/convert.py')
| -rw-r--r-- | utils/convert.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/convert.py b/utils/convert.py index 65b4d3bd..f025c49a 100644 --- a/utils/convert.py +++ b/utils/convert.py @@ -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 = [] |
