For getting project_parent_name, following two lines of code are used.
project_parent_name = project_name[:-len('-dists')]
project_parent_name = project_parent_name[:project_parent_name.rindex('-')]
I think the second line is redundant code causing error. (ValueError: substring not found)
Distribution files are compiled under 'GameName-dist' folder as 'GameName-market', so I think it will work well with the first line (and it really is, as I have tried)
For getting project_parent_name, following two lines of code are used.
project_parent_name = project_name[:-len('-dists')]project_parent_name = project_parent_name[:project_parent_name.rindex('-')]I think the second line is redundant code causing error. (ValueError: substring not found)
Distribution files are compiled under 'GameName-dist' folder as 'GameName-market', so I think it will work well with the first line (and it really is, as I have tried)