Thread: Staff Activity
View Single Post
  #12  
Old 09-14-2012, 03:01 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by BlueMelon View Post
Sorry I got to exited...

add log.close() at the end of the script
Won't work, since "log" is your list of lines, not the file handle. Instead:
PHP Code:
f   open("rclog.txt",'r')
log f.readlines()
f.close() 
Reply With Quote