Skip to content

Commit

Permalink
Merge 325f398 into d4bd4cd
Browse files Browse the repository at this point in the history
  • Loading branch information
ferraith committed Jul 25, 2018
2 parents d4bd4cd + 325f398 commit e3e9786
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setuptools.setup(
name='setuptools-antlr',
version='0.2.1',
version='0.2.2',
packages=setuptools.find_packages(),
package_data={'setuptools_antlr': ['lib/antlr-4.7.1-complete.jar', 'lib/LICENSE.txt']},
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion setuptools_antlr/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def read_imports(self) -> typing.List[str]:
:return: a list of imported grammars
"""
import_stmt_regex = re.compile('^\s*import\s*(.*)\s*;', re.MULTILINE)
import_stmt_regex = re.compile('^\s*import\s+(.*)\s*;', re.MULTILINE)

try:
with self.path.open() as f:
Expand Down

0 comments on commit e3e9786

Please sign in to comment.