Hi, Christopher Spears wrote: > def get_path(self, widget, entry, path):
Just remove the "path" argument. Also, since it is a callback, you won't ever see your return value again (it is just dismissed to nowhere). Either print base_path, or set_text(base_path) on a widget.
Greetings, Felix _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
