Browse Source

made entry_point in Application optional

twall 11 years ago
parent
commit
300a0854cf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      nsist/configreader.py

+ 1 - 1
nsist/configreader.py

@@ -53,7 +53,7 @@ CONFIG_VALIDATORS = {
     'Application': SectionValidator([
         ('name', True),
         ('version', True),
-        ('entry_point', True),
+        ('entry_point', False),
         ('script', False),
         ('icon', False),
         ('console', False),