From 4866b1b3042339841437129ba270c96bd8368d89 Mon Sep 17 00:00:00 2001 From: Sebastiano Gottardo Date: Fri, 27 Apr 2018 10:51:29 +0200 Subject: [PATCH] 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.` --- src/main/kotlin/de/fabianonline/telegram_backup/LoginManager.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/de/fabianonline/telegram_backup/LoginManager.kt b/src/main/kotlin/de/fabianonline/telegram_backup/LoginManager.kt index 86aefe0..eab0c39 100644 --- a/src/main/kotlin/de/fabianonline/telegram_backup/LoginManager.kt +++ b/src/main/kotlin/de/fabianonline/telegram_backup/LoginManager.kt @@ -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 {