What is wrong with that code? Though, there is some redundant code, using both normpath() and abspath(), but using only abspath() would be sufficient, as abspath is already normalizing the path, from the documentation:
http://docs.python.org/library/os.path.html >os.path.abspath(path) >Return a normalized absolutized version of the pathname path. On >most platforms, this is equivalent to normpath(join(os.getcwd(), >path)). Czarek. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
