87:55b5831bcad0 | 88:dc07c514df20 |
---|---|
952 @return list of project form sources (list of strings) | 952 @return list of project form sources (list of strings) |
953 """ | 953 """ |
954 if self.__project.pdata["PROGLANGUAGE"][0] in ["Python", "Python2", | 954 if self.__project.pdata["PROGLANGUAGE"][0] in ["Python", "Python2", |
955 "Python3"]: | 955 "Python3"]: |
956 sourceExt = ".py" | 956 sourceExt = ".py" |
957 elif self.project.pdata["PROGLANGUAGE"][0] == "Ruby": | 957 elif self.__project.pdata["PROGLANGUAGE"][0] == "Ruby": |
958 sourceExt = ".rb" | 958 sourceExt = ".rb" |
959 else: | 959 else: |
960 return [] | 960 return [] |
961 | 961 |
962 formsSources = [] | 962 formsSources = [] |