Skip to content

Commit

Permalink
Fix forgotten typo in cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Fenrisfulsur committed Nov 16, 2023
1 parent aa3bd6c commit c7f2719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/qbindiff
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def main(
if "all" in set(features):
# Add all features with default weight and distance
for f in FEATURES_KEYS:
qbindiff.register_feature_extractor(FEATURES_KEYS[f], float(1.0), distance=distance)
qbindiff.register_feature_extractor(FEATURES_KEYS[f], float(1.0), distance=Distance[distance])
else:
for feature in set(features):
weight = 1.0
Expand Down

0 comments on commit c7f2719

Please sign in to comment.