新月の開発

041d6a4e :Anonymous 2016-03-13 11:06
朔の2chインターフェースのDATファイルのファイル名の生成の方法が間違ってない?
最初のレコードのstampの値(UTC)をそのまま使ってるようだけど、DATファイルのファイル名はJSTなんだけど…

def load(self):
try:
with util.opentext(self.file, 'r') as f:
for line in f:
try:
# format -> `12345<>thread_FFFF\n`
stamp, filekey = line.strip().split('<>', 1)
stamp = int(stamp)
except ValueError:
continue
self.set_entry(stamp, filekey)
https://github.com/shingetsu/saku/blob/master/shingetsu/mch/keylib.py
Powered by shinGETsu.