Skip to content

Commit 9910661

Browse files
author
Zeppel
authored
Update fimogram.py
1 parent cb50184 commit 9910661

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

fimogram.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
#@uthor b3zi / lucamayer
44
#telegram: @zeppel
5-
#github.com/b3zi/fimogram
5+
#github.com/zeppelsoftware/fimogram
66
#!Linux base application
77
import re
88
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters
@@ -27,7 +27,7 @@ def start(bot, update):
2727
userid = int(format(update.message.from_user['id']))
2828
print userid
2929
print telegramID
30-
update.message.reply_text('Whatup :D networkmonitoring bot by b3zi (C) github.com/b3zi/fimogram ')
30+
update.message.reply_text('Whatup :D networkmonitoring bot by b3zi (C) github.com/zeppelsoftware/fimogram ')
3131
if userid != telegramID:
3232
update.message.reply_text('Hello '+starter+'. I am sorry, you are not the hoster of this bot. That is the reason why you are blocked from now on.')
3333

@@ -103,15 +103,15 @@ def isOnline(bot, update, args, job_queue, chat_data):
103103
bot.sendMessage(telegramID, device+" is not available.")
104104

105105
def help(bot, update):
106-
update.message.reply_text('FIMOGRAM - github.com/b3zi/fimogram - Simply text @lucamayer for help')
106+
update.message.reply_text('FIMOGRAM - github.com/zeppelsoftware/fimogram - Simply text @lucamayer for help')
107107
if int(format(update.message.from_user['id'])) != telegramID:
108108
#ignore
109109
print "unknown user"
110110
else:
111111
bot.sendMessage(telegramID, 'Available commands: \n/start - start bot\n/sscan - simple network scan\n/ascan - advanced network scan\n/fscan - full network scan\n/check [hostname/IP/WebURL] - Check if a device is online.')
112112

113113
def echo(bot, update):
114-
update.message.reply_text('Sorry, please use /help or check on github.com/b3zi/fimogram')
114+
update.message.reply_text('Sorry, please use /help or check on github.com/zeppelsoftware/fimogram')
115115

116116
def error(bot, update, error):
117117
logger.warning('Update "%s" caused error "%s"', update, error)

0 commit comments

Comments
 (0)