11031:9f75293fcd57 | 11032:84a66daa5e34 |
---|---|
1675 return | 1675 return |
1676 | 1676 |
1677 opens = 0 | 1677 opens = 0 |
1678 for filename in args.file_or_project: | 1678 for filename in args.file_or_project: |
1679 try: | 1679 try: |
1680 ext = os.path.normcase(os.path.splitext(filename)[1]) | 1680 ext = os.path.splitext(filename)[1].lower() |
1681 except IndexError: | 1681 except IndexError: |
1682 ext = "" | 1682 ext = "" |
1683 | 1683 |
1684 if ext in (".epj",): | 1684 if ext in (".epj",): |
1685 self.project.openProject(filename) | 1685 self.project.openProject(filename) |