eric7/Project/Project.py

branch
eric7
changeset 9141
7085ece52151
parent 9125
3d2411181b3c
child 9142
990abeef759f
equal deleted inserted replaced
9140:6bbb4e047902 9141:7085ece52151
3786 try: 3786 try:
3787 return self.pdata["TESTING_FRAMEWORK"] 3787 return self.pdata["TESTING_FRAMEWORK"]
3788 except KeyError: 3788 except KeyError:
3789 return "" 3789 return ""
3790 3790
3791 def getProjectLicense(self):
3792 """
3793 Public method to get the license type used by the project.
3794
3795 @return license type of the project
3796 @rtype str
3797 """
3798 try:
3799 return self.pdata["LICENSE"]
3800 except KeyError:
3801 return ""
3802
3791 def __isInPdata(self, fn): 3803 def __isInPdata(self, fn):
3792 """ 3804 """
3793 Private method used to check, if the passed in filename is project 3805 Private method used to check, if the passed in filename is project
3794 controlled.. 3806 controlled..
3795 3807

eric ide

mercurial