Queer European MD passionate about IT
Browse Source

Bug in installation script fixed

Davte 2 years ago
parent
commit
9385401154
2 changed files with 3 additions and 2 deletions
  1. 1 1
      ciclopibot/__init__.py
  2. 2 1
      install.sh

+ 1 - 1
ciclopibot/__init__.py

@@ -3,7 +3,7 @@
 __author__ = "Davide Testa"
 __email__ = "davide@davte.it"
 __license__ = "GNU General Public License v3.0"
-__version__ = "1.2.5"
+__version__ = "1.2.6"
 __maintainer__ = "Davide Testa"
 __contact__ = "t.me/davte"
 

+ 2 - 1
install.sh

@@ -18,7 +18,8 @@ python3 -m venv "$venv_name";
 # Other systems may require a different path.
 echo "python_virtual_environment=\"$(pwd)/$venv_name/bin\";" >> "$configuration_file";
 echo "python_script=\"$this_script_directory/ciclopibot/bot.py\";" >> "$configuration_file";
-read -r "Enter a valid Telegram bot token           " bot_token;
+echo "Enter a valid Telegram bot token";
+read bot_token;
 echo "bot_token = \"$bot_token\"" >> "$passwords_file";
 
 # Run bot