Skip to content

Commit 47e8900

Browse files
committed
Merge pull request NARKOZ#41 from WKPlus/master
use with instead of file open and close
2 parents f9321f0 + 8c00bba commit 47e8900

File tree

2 files changed

+2
-28
lines changed

2 files changed

+2
-28
lines changed

python/hangover.py

+1-14
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,4 @@
4141
body="Gonna work from home. " + random.choice(excuses)
4242
)
4343

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")

python/smack_my_bitch_up.py

+1-14
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,4 @@
4242
body="Late at work. " + random.choice(reasons)
4343
)
4444

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")

0 commit comments

Comments
 (0)