Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alexisml authored Aug 23, 2018
1 parent e19adde commit 6c8aba5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions octoprint_telegram/telegramCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,9 +353,9 @@ def cmdCtrl(self,chat_id,from_id,cmd,parameter):
def cmdUser(self,chat_id,from_id,cmd,parameter):
msg = self.gEmo('info') + " *Your user settings:*\n\n"
msg += "*ID:* " + str(chat_id) + "\n"
msg += "*Name:* " + str(self.main.chats[chat_id]['title']) + "\n"
msg += "*Name:* " + self.main.chats[chat_id]['title'] + "\n"
if self.main.chats[chat_id]['private']:
msg += "*Type:* Priavte\n\n"
msg += "*Type:* Private\n\n"
else:
msg += "*Type:* Group\n"
if self.main.chats[chat_id]['accept_commands']:
Expand Down Expand Up @@ -545,7 +545,7 @@ def cmdHelp(self,chat_id,from_id,cmd,parameter):
"/togglepause - Pause/Resume current Print.\n"
"/con - Connect/disconnect printer.\n"
"/upload - You can just send me a gcode file to save it to my library.\n"
"/sys - Execute Octoprint System Comamnds.\n"
"/sys - Execute Octoprint System Commands.\n"
"/ctrl - Use self defined controls from Octoprint.\n"
"/tune - Set feed- and flowrate. Control temperatures.\n"
"/user - get user info.\n"
Expand Down

0 comments on commit 6c8aba5

Please sign in to comment.