diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2019-10-11 08:59:00 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2019-10-11 08:59:00 +0200 |
commit | 80bb434a5bece0ce2f607ebaa3651e4d833a7236 (patch) | |
tree | d6faab9636d4df393225d9e98ffbc97f6f3aa1fe | |
parent | fdcc372b5cee30134039da3e7fa07429a6151726 (diff) | |
download | epubgrep-80bb434a5bece0ce2f607ebaa3651e4d833a7236.tar.gz |
Make marking found patterns with color default.
-rwxr-xr-x | epubgrep.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/epubgrep.py b/epubgrep.py index d6e44cf..0451c17 100755 --- a/epubgrep.py +++ b/epubgrep.py @@ -98,8 +98,8 @@ if __name__ == "__main__": action='store_true', help="make search case insensitive") parser.add_argument('-o', '--color', '--colour', - action='store_true', - help="make search case insensitive") + action='store_false', + help="Do NOT mark found patterns with color") parser.add_argument('-m', '--multi-line', action='store_true', help="make search multi line") |