mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-18 22:51:01 +01:00
Forgot to put backtick in validchars.
This commit is contained in:
parent
7828b73e1b
commit
5a8f0ce7fa
@ -155,7 +155,7 @@ class ArgumentError(Error):
|
|||||||
|
|
||||||
class Tokenizer:
|
class Tokenizer:
|
||||||
_env = {'__builtins__': new.module('__builtins__')}
|
_env = {'__builtins__': new.module('__builtins__')}
|
||||||
validChars = string.ascii[33:].translate(string.ascii, '"`[]')
|
validChars = string.ascii[33:].translate(string.ascii, '"[]')
|
||||||
def __init__(self, tokens=''):
|
def __init__(self, tokens=''):
|
||||||
self.validChars = self.validChars.translate(string.ascii, tokens)
|
self.validChars = self.validChars.translate(string.ascii, tokens)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user