src/PythonHandler.h
branchv_0
changeset 25 940bd8320e82
parent 23 8ce11a192aad
child 29 5105357e9b47
--- a/src/PythonHandler.h	Wed Feb 20 11:30:50 2019 +0100
+++ b/src/PythonHandler.h	Sat Mar 30 16:14:42 2019 +0100
@@ -46,7 +46,7 @@
 using namespace relpipe::reader;
 using namespace relpipe::reader::handlers;
 
-class PythonHandler : public RelationalReaderStringHadler {
+class PythonHandler : public RelationalReaderStringHandler {
 private:
 	const wregex ATTRIBUTE_NAMES_ALLOWED = wregex(L"[a-zA-Z0-9_]+");
 	const wregex ATTRIBUTE_NAMES_DISALLOWED = wregex(L"WHERE|[0-9_].*|False|None|True|and|as|assert|break|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|nonlocal|not|or|pass|raise|return|try|while|with|yield"); // Python keywords from: import keyword; keyword.kwlist