File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ def _update_error_stack(plugin_name):
11
11
base_meta = pkg_resources .get_distribution (base_name )
12
12
plugin_meta = pkg_resources .get_distribution (plugin_name )
13
13
14
- data = hash_pkg (str (Path (plugin_meta .module_path , plugin_name )))
14
+ data = hash_pkg (pkgpath = str (Path (plugin_meta .module_path , plugin_name )))
15
15
signature = plugin_meta .get_metadata ('{}.sig' .format (plugin_name ))
16
16
pubkey_path = str (Path (base_meta .egg_info , '{}.pub' .format (base_name )))
17
- verify (pubkey_path , data , signature )
17
+ verify (pubkey_path = pubkey_path , data = data , signature = signature )
18
18
print ('DataJoint verified plugin `{}` detected.' .format (plugin_name ))
19
19
return True
20
20
except (FileNotFoundError , InvalidSignature ):
You can’t perform that action at this time.
0 commit comments