File tree 2 files changed +2
-28
lines changed
2 files changed +2
-28
lines changed Original file line number Diff line number Diff line change 41
41
body = "Gonna work from home. " + random .choice (excuses )
42
42
)
43
43
44
- try :
45
- f = open ('logs/file.txt' , 'a' )
46
- except IOError as e :
47
- # dir & file don't exist; create them
48
- os .mkdir ('logs' )
49
- f = open ('logs/file.txt' , 'a' )
50
- except Exception as e :
51
- print e
52
- else :
53
- pass
54
-
55
- # log it
56
- f .write ("Message sent at " + strftime ("%a, %d %b %Y %H:%M:%S" ) + "\n " )
57
- f .close ()
44
+ print "Message sent at " + strftime ("%a, %d %b %Y %H:%M:%S" )
Original file line number Diff line number Diff line change 42
42
body = "Late at work. " + random .choice (reasons )
43
43
)
44
44
45
- try :
46
- f = open ('logs/file.txt' , 'a' )
47
- except IOError as e :
48
- # dir & file don't exist; create them
49
- os .mkdir ('logs' )
50
- f = open ('logs/file.txt' , 'a' )
51
- except Exception as e :
52
- print e
53
- else :
54
- pass
55
-
56
- # log it
57
- f .write ("Message sent at " + strftime ("%a, %d %b %Y %H:%M:%S" ) + "\n " )
58
- f .close ()
45
+ print "Message sent at " + strftime ("%a, %d %b %Y %H:%M:%S" )
You can’t perform that action at this time.
0 commit comments