1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-10 16:58:47 +03:00

lvmdbusd: Make job.Percent a double

This commit is contained in:
Tony Asleson 2016-08-24 22:39:30 -05:00
parent 2bb09b4015
commit 0985b2d0d4

View File

@ -105,7 +105,7 @@ class JobState(object):
# noinspection PyPep8Naming
class Job(AutomatedProperties):
_Percent_meta = ('y', JOB_INTERFACE)
_Percent_meta = ('d', JOB_INTERFACE)
_Complete_meta = ('b', JOB_INTERFACE)
_Result_meta = ('o', JOB_INTERFACE)
_GetError_meta = ('(is)', JOB_INTERFACE)
@ -121,7 +121,7 @@ class Job(AutomatedProperties):
@property
def Percent(self):
return dbus.Byte(int(self.state.Percent))
return dbus.Double(float(self.state.Percent))
@Percent.setter
def Percent(self, value):