# txtfn2htmlf.py:

import os
import sys
from commands import getoutput

def main():
    yyyy = sys.argv[1]
    dirl = os.listdir('/home3/hbecknet/public_html/picdata/txt/'+yyyy)
    for fn in dirl:
        if fn[-4:] != '.txt':
            continue
        print fn

main()

