Skip to content

Commit

Permalink
23/05 #1
Browse files Browse the repository at this point in the history
  • Loading branch information
loicdm committed May 23, 2017
1 parent d6e2490 commit dc9f558
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,11 +199,11 @@ def get_channel_id(tablename):


def rename_chan(userinput, self):
username = userinput[1]
userpassword = userinput[2]
channel = userinput[3]
password = userinput[4]
new_channel_name = userinput[5]
username = str(userinput[1])
userpassword = str(userinput[2])
channel = str(userinput[3])
password = str(userinput[4])
new_channel_name = str(userinput[5])
tablename = "channel_" + str(channel)
if check_login(username, self) is True and check_password_user(username, userpassword,
self) is True and check_password_channel(channel,
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# coding: utf-8
from functions import *

version = "1.0.8"
version = "1.0.9"

check_cfg()
check_db()
Expand Down

0 comments on commit dc9f558

Please sign in to comment.