1
0
mirror of https://github.com/altlinux/gpupdate.git synced 2025-03-21 18:50:38 +03:00

Added new field action to record_types.py

This commit is contained in:
Valery Sinelnikov 2022-11-22 17:25:39 +04:00
parent 5fdefaecc0
commit d409d68052

View File

@ -115,6 +115,7 @@ class drive_entry(object):
self.password = dobj.password
self.dir = dobj.dir
self.path = dobj.path
self.action = dobj.action
def update_fields(self):
fields = dict()
@ -123,6 +124,7 @@ class drive_entry(object):
fields['password'] = self.password
fields['dir'] = self.dir
fields['path'] = self.path
fields['action'] = self.action
return fields