mirror of
https://github.com/Death916/emailtrade.git
synced 2026-04-10 03:04:40 -07:00
8 lines
142 B
Python
8 lines
142 B
Python
|
|
import time
|
|
|
|
|
|
def tradehist(msg):
|
|
log = open('d:\\code\\emailtrade\\tradehist.txt','a')
|
|
log.write('\n' + time.ctime() + ' ' + msg)
|
|
|