12 lines
172 B
Python
12 lines
172 B
Python
# -*- encoding: utf-8 -*-
|
|
|
|
CEDILLA = u"ç"
|
|
|
|
|
|
def match(command):
|
|
return command.script.endswith(CEDILLA)
|
|
|
|
|
|
def get_new_command(command):
|
|
return command.script[:-1]
|