跳至內容
選單
此問題已被標幟
3832 瀏覽次數

Hi,

when i print my report i get always the time wrong (-1 hour) , and i don't know how to solve this problem .

i have this function in my code :

def _interpolation_dict(self):
        t = time.localtime() # Actually, the server is always in UTC.
        return {
            'year': time.strftime('%Y', t),
            'month': time.strftime('%m', t),
            'day': time.strftime('%d', t),
            'y': time.strftime('%y', t),
            'doy': time.strftime('%j', t),
            'woy': time.strftime('%W', t),
            'weekday': time.strftime('%w', t),
            'h24': time.strftime('%H', t),
            'h12': time.strftime('%I', t),
            'min': time.strftime('%M', t),
            'sec': time.strftime('%S', t),
        }


 

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
3
1月 21
21559
3
3月 24
4380
0
10月 16
3831
1
6月 22
2144
2
3月 22
8620