Skip to content

Commit

Permalink
Merge pull request #32 from knownsec/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
wh0am1i authored Mar 25, 2021
2 parents 06e957b + f440622 commit 93363f6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion zoomeye/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

__name__ = 'zoomeye'
__package__ = 'zoomeye'
__version__ = ' 2.0.4.3'
__version__ = ' 2.0.4.4'
__site__ = "https://www.zoomeye.org/doc"
14 changes: 7 additions & 7 deletions zoomeye/show.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ def convert_str(s):
d = {
'\n': '\\n',
'\r': '\\r',
'\t': '\\t'
'\t': '\\t',
'\b': '\\b',
'\a': '\\a',
}
for c in s:
if ord(c) in range(32, 127):
res.append(c)
elif c in d.keys():
if c in d.keys():
res.append(d[c])
else:
res.append('\\x%.2x' % ord(c))
res.append(c)
return ''.join(res)


Expand Down Expand Up @@ -320,9 +320,9 @@ def print_filter_history(fileds, hist_data, condition=None):
for condition_item in condition:
k, v = condition_item.split('=')
re_result = re.search(str(v), str(item_item), re.I | re.M)
content = "\033[31m{}\033[0m".format(re_result.group())
# replace to highlight
if re_result:
item_item = item_item.replace(re_result.group(), content)
content_item = "\033[31m{}\033[0m".format(re_result.group())
item_item = str(item_item).replace(re_result.group(), content_item)
content += "{:<27}".format(item_item)
printf(content)

0 comments on commit 93363f6

Please sign in to comment.