Skip to content

Commit

Permalink
fixed project input parsing (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubczakon committed Feb 9, 2019
1 parent 0bdd950 commit 6e1749c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neptunecontrib/bots/telegram_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def unknown(self, bot, update):
text="Sorry, I only undestand /project, /experiments, /experiment")

def _project_list(self, bot, update, args):
if len(args) != 1:
if len(args) != 2:
msg = ['message should have a format:',
'/project list NAMESPACE',
'for example:',
Expand Down

0 comments on commit 6e1749c

Please sign in to comment.