本文整理汇总了Python中BEE2_config.GEN_OPTS.save方法的典型用法代码示例。如果您正苦于以下问题:Python GEN_OPTS.save方法的具体用法?Python GEN_OPTS.save怎么用?Python GEN_OPTS.save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BEE2_config.GEN_OPTS
的用法示例。
在下文中一共展示了GEN_OPTS.save方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: update_modtimes
# 需要导入模块: from BEE2_config import GEN_OPTS [as 别名]
# 或者: from BEE2_config.GEN_OPTS import save [as 别名]
def update_modtimes():
"""Update the cache modification times, so next time we don't extract.
This should only be done if we've copied all the files.
"""
import time
from BEE2_config import GEN_OPTS
LOGGER.info('Setting modtimes..')
for pack in packageLoader.packages.values():
# Set modification times for each package.
pack.set_modtime()
# Reset package cache times for removed packages. This ensures they'll be
# detected if re-added.
for pak_id in packageLoader.PACK_CONFIG:
if pak_id not in packageLoader.packages:
packageLoader.PACK_CONFIG[pak_id]['ModTime'] = '0'
# Set the overall cache time to now.
GEN_OPTS['General']['cache_time'] = str(int(time.time()))
GEN_OPTS['General']['cache_pack_count'] = str(len(packageLoader.packages))
packageLoader.PACK_CONFIG.save()
GEN_OPTS.save()