Skip to content

Commit

Permalink
foo
Browse files Browse the repository at this point in the history
  • Loading branch information
DFectuoso committed Jun 27, 2010
1 parent 2ec21aa commit c7be1ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripter.py
Expand Up @@ -3,6 +3,7 @@
import sys
import aifc
import os
import os.path
import re
import urllib2
import simplejson
Expand Down Expand Up @@ -108,7 +109,7 @@ def link(src, dst):

class index:
def GET(self,foo):
if os.path.exist(foo + ".mpeg"):
if os.path.isfile(foo + ".mpeg"):
return "Exist"
else:
magic(foo)
Expand Down

0 comments on commit c7be1ff

Please sign in to comment.