Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion da/compiler/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ def parse_module_header(self, node):

if not (len(node.body) > 0 and
isinstance(node.body[0], Expr) and
isinstance(node.body[0].value, Str)):
isinstance(node.body[0].value, str)):
return

self.debug("parsing module header...")
Expand Down