src/eric7/UI/UserInterface.py

branch
eric7
changeset 11032
84a66daa5e34
parent 11027
89045c060113
child 11033
6b197c3389f7
equal deleted inserted replaced
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)

eric ide

mercurial