removed --space (usage of tampering modules is now a prefered way to do it)

This commit is contained in:
Miroslav Stampar
2010-10-15 12:52:33 +00:00
parent d0514d18ec
commit c9f0c75030
5 changed files with 12 additions and 26 deletions

View File

@@ -1467,12 +1467,6 @@ def longestCommonPrefix(*sequences):
def commonFinderOnly(initial, sequence):
return longestCommonPrefix(*filter(lambda x: x.startswith(initial), sequence))
def replaceSpaces(query):
if query:
return query if conf.space is None else query.replace(' ', conf.space)
else:
return query
def pushValue(value):
kb.valueStack.append(value)