Merge pull request #12432 from DisasterMo/crowdin_sync

Fixed a tiny bug in the Crowdin sync script
This commit is contained in:
Autechre 2021-05-24 18:51:41 +02:00 committed by GitHub
commit bb04b0b9d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,8 +9,8 @@ import urllib.request
import zipfile
# Check Crowdin API Key
if len(sys.argv) < 1:
print('Please Provides Crowdin API Key!')
if len(sys.argv) < 2:
print('Please provide Crowdin API Key!')
exit()
api_key = sys.argv[1]