diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-20 20:35:35 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-20 20:35:35 -0400 |
commit | 96b652310cf8077926f241a15b853b0676bd3f3c (patch) | |
tree | 5809d3d3c28e9545ff963b5d54b526764215e0ce | |
parent | d15bb66ee417c9b84cb8881cd8dd1c4e0d28bf0e (diff) | |
download | fork-ledger-96b652310cf8077926f241a15b853b0676bd3f3c.tar.gz fork-ledger-96b652310cf8077926f241a15b853b0676bd3f3c.tar.bz2 fork-ledger-96b652310cf8077926f241a15b853b0676bd3f3c.zip |
Don't warn about --import in doc when --no-python
-rwxr-xr-x | test/CheckTests.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/CheckTests.py b/test/CheckTests.py index 225d4a8d..1a364ff4 100755 --- a/test/CheckTests.py +++ b/test/CheckTests.py @@ -71,7 +71,14 @@ for line in pipe.stderr: else: documented_options.remove(option) -known_alternates = [ 'cost', 'first', 'last', 'leeway', 'period-sort' ] +known_alternates = [ + 'cost', + 'first', + 'import', + 'last', + 'leeway', + 'period-sort' +] for option in documented_options: if option not in known_alternates: |