Add missing ' character in log message

Before:
`Everything seems fine. Please run this tool again with '--account +4917077651234 to use this account.`

After:
`Everything seems fine. Please run this tool again with '--account +4917077651234' to use this account.`
This commit is contained in:
Sebastiano Gottardo 2018-04-27 10:51:29 +02:00 committed by GitHub
parent 223a0fdde3
commit 4866b1b304
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class LoginManager(val app: TelegramApp, val target_dir: String, val phoneToUse:
val pw = getPassword()
verify_password(client, pw)
}
System.out.println("Everything seems fine. Please run this tool again with '--account ${phone} to use this account.")
System.out.println("Everything seems fine. Please run this tool again with '--account ${phone}' to use this account.")
}
private fun send_code_to_phone_number(client: TelegramClient, phone: String): TLSentCode {