|
@@ -44,7 +44,7 @@ parser.add_argument('-i','--ignore',
|
|
|
action='append',
|
|
|
dest="ignoreFiles",
|
|
|
default=[],
|
|
|
- help='Loads a list of NodeIDs stored in ignoreFile (one NodeID per line). The compiler will assume that these Nodes have been creathed externally and not generate any code for them. They will however be linked to from other nodes.')
|
|
|
+ help='Loads a list of NodeIDs stored in ignoreFile (one NodeID per line). The compiler will assume that these nodes have been created externally and not generate any code for them. They will however be linked to from other nodes.')
|
|
|
parser.add_argument('-b','--blacklist',
|
|
|
metavar="<blacklistFile>",
|
|
|
type=argparse.FileType('r'),
|
|
@@ -149,7 +149,7 @@ ns.allocateVariables()
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
ignoreNodes = []
|
|
|
for ignore in args.ignoreFiles:
|
|
@@ -174,3 +174,5 @@ for line in generatedCode[1]:
|
|
|
|
|
|
outfilec.close()
|
|
|
outfileh.close()
|
|
|
+
|
|
|
+logger.info("Namespace generation code successfully printed")
|