代码拉取完成,页面将自动刷新
#!/usr/bin/env python3
# Copyright (C) 2014-2015 LiuLang <gsushzhsosgsu@gmail.com>
# Use of this source code is governed by GPLv3 license that can be found
# in http://www.gnu.org/licenses/gpl-3.0.html
import os
import sys
import time
from bcloud.App import App
LOG_INTERVAL = 30 * 86400 # 30 days
def main():
# handle errors
logfile = os.path.expanduser('~/.config/bcloud/bcloud-stderr.log')
dirname = os.path.dirname(logfile)
if not os.path.exists(dirname):
try:
os.makedirs(dirname)
except Exception:
sys.exit(1)
if (os.path.exists(logfile) and
time.time() - os.stat(logfile).st_ctime > LOG_INTERVAL):
os.remove(logfile)
sys.stderr = open(logfile, 'a')
app = App()
app.run(sys.argv)
if __name__ == '__main__':
main()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。