grep: fixed --id-list option

and switch to version 3.0.0b38
This commit is contained in:
Celine Mercier
2020-11-06 16:36:37 +01:00
parent d27a5b9115
commit 52a2e21b38
2 changed files with 2 additions and 2 deletions

View File

@ -184,7 +184,7 @@ def Filter_generator(options, tax_filter, i_view):
invert_selection = options["invert_selection"]
id_set = None
if "id_list" in options:
id_set = set(x.strip() for x in open(options["id_list"]))
id_set = set(x.strip() for x in open(options["id_list"], 'rb'))
# Initialize the regular expression patterns
seq_pattern = None

View File

@ -1,5 +1,5 @@
major = 3
minor = 0
serial= '0b37'
serial= '0b38'
version ="%d.%d.%s" % (major,minor,serial)