diff --git a/README.md b/README.md index 238ae45..6b83f8f 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,9 @@ Command | Description -s [SUB], --sub [SUB] | Set the subtitle type. -l [LANGUAGE], --language [LANGUAGE] | Set the language -y [YEAR], --year [YEAR] | Set the torrent year (YYYYMMDD or YYYY). +-eti [EDITIONTITLE], --editiontitle [EDITIONTITLE] | Set the edition title. +-ey [EDITIONYEAR], --year [EDITIONYEAR] | Set the edition year (YYYYMMDD or YYYY). +-ss [SCREENSHOTURLS], --screenshots [SCREENSHOTURLS] | Set the screenshot URLs. Split multiple with "," -f, --freeleech | Enables freeleech. ## Config.json diff --git a/upload.py b/upload.py index 016a077..19d610f 100644 --- a/upload.py +++ b/upload.py @@ -219,7 +219,7 @@ def gatherdata(): if screenshots: input_screenshots = screenshots else: - input_screenshots = input("\n" + "_" * 100 + "\nEnter the screenshot links. Separate multiple with \",\". Minimum 2 tags required.\n") + input_screenshots = input("\n" + "_" * 100 + "\nEnter the screenshot links. Separate multiple with \",\".\n") if input_screenshots != "": input_screenshots = input_screenshots.replace(",","\n") releasedata["screenshots"] = input_screenshots