From 4b78d2020161641b0ff4503adc89683cb4ba9887 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Fri, 20 Sep 2019 06:11:58 -0400 Subject: [PATCH] Add changelogUrl to helper script. --- helper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/helper.py b/helper.py index c4e388bc..51fa42fa 100755 --- a/helper.py +++ b/helper.py @@ -169,6 +169,7 @@ def create_manifest(slug, plugin_dir="."): manifest['manualUrl'] = input_default("Manual website URL (optional)", manifest.get('manualUrl', "")) manifest['sourceUrl'] = input_default("Source code URL (optional)", manifest.get('sourceUrl', "")) manifest['donateUrl'] = input_default("Donate URL (optional)", manifest.get('donateUrl', "")) + manifest['changelogUrl'] = manifest.get('changelogUrl', "") if 'modules' not in manifest: manifest['modules'] = []