Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
397179459 committed Aug 3, 2023
1 parent 70da6e2 commit 6a2c2eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion login.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def get_location():
config.set(mobile, 'lat', location.split(',')[1])
config.set(mobile, 'lng', location.split(',')[0])
config.write(open(path, 'w+', encoding="utf-8")) # 保存数据
condition = input(f"是否继续添加账号[Y/N]:").lstrip().rstrip()
condition = input(f"是否继续添加账号[y/n]:").lstrip().rstrip()
condition = condition.lower()
if condition == 'n':
break

0 comments on commit 6a2c2eb

Please sign in to comment.