deploy-ng: fix typo in FreezeTool.py

This causes an error when a module referenced by a star pattern doesn't exist.

Fixes #721
Closes #725
This commit is contained in:
Ian Eborn (Thaumaturge) 2019-09-04 15:40:18 +02:00 committed by rdb
parent 8b241b8c18
commit 73d6c52da6

View File

@ -997,7 +997,7 @@ class Freezer:
if modules == None:
# It's actually a regular module.
mdef[newParentName] = self.ModuleDef(
mdefs[newParentName] = self.ModuleDef(
parentName, implicit = implicit, guess = guess,
fromSource = fromSource, text = text)