mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
make attr - test safer
This commit is contained in:
parent
1ac51afd27
commit
f49800d5b8
@ -356,7 +356,7 @@ class IntegrationPluginBase(MixinBase, plugin.InvenTreePlugin):
|
||||
|
||||
def set_package(self):
|
||||
"""add packaging info of the plugins into plugins context"""
|
||||
package = self.get_package_metadata() if self.is_package else self.get_package_commit()
|
||||
package = self.get_package_metadata() if getattr(self, 'is_package', False) else self.get_package_commit()
|
||||
|
||||
# process date
|
||||
if package.get('date'):
|
||||
|
Loading…
Reference in New Issue
Block a user