[RUtils] This was a bad idea, use ` instead

master
Sfan5 2013-06-02 20:53:44 +02:00
parent bc5703b112
commit ff8fe64b64
1 changed files with 3 additions and 3 deletions

View File

@ -216,10 +216,10 @@ def regex(phenny, input):
if not input.group(2):
return
q = input.group(2).encode('utf-8')
rgx = q[:q.find("\xb0")]
txt = q[q.find("\xb0")+1:]
rgx = q[:q.find("`")]
txt = q[q.find("`")+1:]
if rgx == "" or txt == "":
return phenny.reply("Give me a regex and a message seperated by \xb0")
return phenny.reply("Give me a regex and a message seperated by `")
try:
r = re.compile(rgx)
except BaseException as e: