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):
1111 base_meta = pkg_resources .get_distribution (base_name )
1212 plugin_meta = pkg_resources .get_distribution (plugin_name )
1313
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 )))
1515 signature = plugin_meta .get_metadata ('{}.sig' .format (plugin_name ))
1616 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 )
1818 print ('DataJoint verified plugin `{}` detected.' .format (plugin_name ))
1919 return True
2020 except (FileNotFoundError , InvalidSignature ):
You can’t perform that action at this time.
0 commit comments