--- a/eric7/Project/Project.py Wed Jun 08 19:13:35 2022 +0200 +++ b/eric7/Project/Project.py Thu Jun 09 16:13:18 2022 +0200 @@ -3788,6 +3788,18 @@ except KeyError: return "" + def getProjectLicense(self): + """ + Public method to get the license type used by the project. + + @return license type of the project + @rtype str + """ + try: + return self.pdata["LICENSE"] + except KeyError: + return "" + def __isInPdata(self, fn): """ Private method used to check, if the passed in filename is project