Krzysztof Jakubczyk pisze:
> Hi,
> there is an error in Makespec.py file. Here is the context:
>
> builddir = os.path.join('build', 'pyi.' + config['target_platform'],
> name)
>
>
> 'exe = EXE(pyz,
> a.scripts,
> exclude_binaries=1,
> name=os.path.join('%(builddir)s', '%(exename)s'),
> debug=%(debug)s,
> strip=%(strip)s,
> upx=%(upx)s,
> console=%(console)s %(exe_options)s)' % builddir
>
> when name starts with character r we have an error
> builddir = 'build\pyi.win32\r....'
> \r should be escaped
>
>
> >
>
>
Fast and a little dirty solution may be:
builddir = "build', 'pyi.%s', '%s" % (config['target_platform'], name)
instead of what is currently
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---