Skip to content

Commit

Permalink
Clearly I didn't test my latest change
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Stortz committed Jul 16, 2020
1 parent 30a43b7 commit 575a312
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion __init__.py
Expand Up @@ -54,7 +54,8 @@ def show_graph_report(bv, g, name):

# 1.3.2086-dev
# also 2.1.2260 Personal
major, minor, patch, _ = re.match("(\d+)\.(\d+)\.(\d+)([- ]\w+)?", a).groups()
version = binaryninja.core_version()
major, minor, patch, _ = re.match("(\d+)\.(\d+)\.(\d+)([- ]\w+)?", version).groups()
major = int(major)
minor = int(minor)
patch = int(patch)
Expand Down

0 comments on commit 575a312

Please sign in to comment.