On 12/8/05, shawn a <[EMAIL PROTECTED]> wrote: > Hello. Im brand new to this list and to python. Ive recently started > reading about it > and am now in the tinkering stage.
Welcome to Python! > I have a script im working on that i > need some > asistance debugging. Its super small and should be a snap for you gurus =) > > I have 2 files in a dir off my home dir: > mkoneurl.py > make_ou_class.py > > --mkoneurl.py-- > #! /usr/bin/env python > > import make_ou_class > > run = makeoneurl() You need: run = make_ou_class.makeoneurl() See <http://docs.python.org/tut/node8.html> for why. (BTW, you would probably have got more of a response with a better subject line. <http://www.catb.org/~esr/faqs/smart-questions.html> is worth a read.) -- Cheers, Simon B, [EMAIL PROTECTED], http://www.brunningonline.net/simon/blog/ -- http://mail.python.org/mailman/listinfo/python-list