mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 07:36:12 +00:00
Fixed missing extension when looking for private assembly files
git-svn-id: http://svn.pyinstaller.org/trunk@856 8dd32b29-ccff-0310-8a9a-9233e24343b1
This commit is contained in:
+1
-1
@@ -478,7 +478,7 @@ class Manifest(object):
|
||||
if language in (LANGUAGE_NEUTRAL_NT5,
|
||||
LANGUAGE_NEUTRAL_NT6):
|
||||
for ext in (".dll", ".manifest"):
|
||||
paths.extend(glob(os.path.join(dirnm, self.name)))
|
||||
paths.extend(glob(os.path.join(dirnm, self.name + ext)))
|
||||
paths.extend(glob(os.path.join(dirnm, self.name,
|
||||
self.name + ext)))
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user