Skip to content
This repository was archived by the owner on Jun 22, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions _tools/generate_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
from xml.dom import minidom

try:
from ConfigParser import SafeConfigParser
from ConfigParser import ConfigParser
except ImportError:
from configparser import SafeConfigParser
from configparser import ConfigParser

__version__ = '1.2.1'

Expand All @@ -40,6 +40,7 @@
summary = config.get('addon', 'summary')
description = config.get('addon', 'description')
url = config.get('locations', 'url')
branch = config.get('locations', 'branch')

# Script settings:
ask_for_exit_input = True # asks user to press enter to exit the information window (stdout)
Expand Down Expand Up @@ -109,7 +110,9 @@ def _generate_repo_files(self):
summary=summary,
description=description,
url=url,
output_path=output_path
output_path=output_path,
branch=branch

)

# save file
Expand Down