Skip to content

Commit 934b430

Browse files
committed
fix display newline
1 parent 9cd8849 commit 934b430

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/installation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
URLS = {}
2626

2727
while True:
28-
config["username"] = input("\nEnter BITS ID [Eg: f2016015]\n")
28+
config["username"] = input("Enter BITS ID [Eg: f2016015]\n")
2929
config["username"] += "@pilani.bits-pilani.ac.in"
3030

31-
config["password"] = getpass(prompt = "Enter nalanda password:")
31+
config["password"] = getpass(prompt = "Enter nalanda password:\n",)
3232

3333
result = session.post(LOGIN_LINK, data = config)
3434
result = BeautifulSoup(result.text, "html.parser")
@@ -55,7 +55,7 @@
5555

5656
json.dump(URLS, open(DATA_FILE, 'w'), indent=4)
5757
json.dump(sub_name_url, open(SUBJECTS_FILE, "w"), indent=4)
58-
print("\nInstallation Successful ✔")
58+
print("Installation Successful ✔")
5959

6060
except KeyboardInterrupt:
6161
quit("Installation cancelled by user. Please retry.")

0 commit comments

Comments
 (0)