#!/usr/bin/python

import common

def main():
    f = file(common.webdir + "/recent_ten.shtml", "w")
    f.write(common.recent())
    f.close()

if __name__ == "__main__":
    main()

