Skip to content

Commit bc26ff7

Browse files
committed
fix nested double quotes, which may cause issues with older version of python
1 parent 9452488 commit bc26ff7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

syncmymoodle/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def get_session_key(soup):
247247

248248
csrf_token = soup.find("input", {"name": "csrf_token"})["value"]
249249

250-
totp_input = input(f"Enter TOTP for generator {self.config["totp"]}:\n")
250+
totp_input = input(f"Enter TOTP for generator {self.config['totp']}:\n")
251251
totp_login_data = {
252252
"fudis_otp_input": totp_input,
253253
"_eventId_proceed": "",

0 commit comments

Comments
 (0)