def reset(self):
     ''' Reset the controlled key '''
     if self.disabled:
         return
     gsettings.reset(schema=self.schema, path=self.path, key=self.key)
     logger.debug(
         'Key {self.key} in schema {self.schema} and path {self.path} reset.'
         .format(self=self))
示例#2
0
 def reset(self):
     """ Reset the controlled key """
     gsettings.reset(schema=self.schema, path=self.path, key=self.key)
     logger.debug("Key {self.key} in schema {self.schema} and path {self.path} reset.".format(self=self))
 def reset(self):
     ''' Reset the controlled key '''
     gsettings.reset(schema=self.schema,path=self.path,key=self.key)
     logger.debug('Key {self.key} in schema {self.schema} and path {self.path} reset.'.format(self=self))