diff options
author | Kyomotoi <[email protected]> | 2020-08-24 18:10:56 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2020-08-24 18:10:56 +0800 |
commit | 1e7d37ba10cbd2174df2731746deaca03934fa87 (patch) | |
tree | bd0140245cd02eb4aea2b7e8e3b7eba74c5309af | |
parent | dfb05168f173c2a984f1d6675961622a6e7e44ce (diff) | |
download | ATRI-1e7d37ba10cbd2174df2731746deaca03934fa87.tar.gz ATRI-1e7d37ba10cbd2174df2731746deaca03934fa87.tar.bz2 ATRI-1e7d37ba10cbd2174df2731746deaca03934fa87.zip |
Update config.py
-rw-r--r-- | config.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -162,7 +162,7 @@ else: print("...跳过!")
time.sleep(1)
wait = input("是否继续: Y/N\n")
- if wait == "Y" or 'y':
+ if wait == "Y" or wait == 'y':
pass
else:
- os._exit(0)
\ No newline at end of file + os._exit(0)
|