mirror of
https://github.com/Death916/emailtrade.git
synced 2026-04-11 04:56:34 -07:00
8 lines
No EOL
167 B
Python
8 lines
No EOL
167 B
Python
import logging
|
|
import time
|
|
|
|
|
|
def tradehist(msg):
|
|
log = open('d:\\code\\emailtrade\\tradehist.txt','a')
|
|
log.write('\n' + time.ctime() + ' ' + msg)
|
|
|