diff --git a/framework/subsystems/odeviced/kernel26.py b/framework/subsystems/odeviced/kernel26.py
index 97e5947..8f25014 100644
|
a
|
b
|
class RealTimeClock( dbus.service.Object ): |
| 438 | 438 | @dbus.service.method( DBUS_INTERFACE, "s", "" ) |
| 439 | 439 | def SetCurrentTime( self, t ): |
| 440 | 440 | """Set time by seconds since epoch (UTC)""" |
| 441 | | pyrtc.rtcSetTime( time.gmtime( t ) ) |
| | 441 | pyrtc.rtcSetTime( time.gmtime( float(t) ) ) |
| 442 | 442 | |
| 443 | 443 | @dbus.service.method( DBUS_INTERFACE, "", "s" ) |
| 444 | 444 | def GetWakeupTime( self ): |