Skip to content

Commit

Permalink
one last fix for moving files
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Newhouse authored and Benjamin Newhouse committed Dec 11, 2010
1 parent 889e1b8 commit d1e6890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrape.py
Expand Up @@ -16,7 +16,7 @@ def download(work):
# Put it in a temp file
if os.system("mimms -c %s %s" % (work[0], "_" + work[1])) == 0:
# Move the file on success
os.system("mv %s %s", "_" + work[1], work[1])
os.system("mv %s %s" % ("_" + work[1], work[1]))
print "Finished", work

if __name__ == '__main__':
Expand Down

0 comments on commit d1e6890

Please sign in to comment.