Fixed a tiny bug in the Crowdin sync script
This commit is contained in:
parent
2b4f2525d0
commit
f2a73d1b14
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue