summaryrefslogtreecommitdiff
path: root/src/plugins/pythoneditor/pythonscanner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/pythoneditor/pythonscanner.cpp')
-rw-r--r--src/plugins/pythoneditor/pythonscanner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/pythoneditor/pythonscanner.cpp b/src/plugins/pythoneditor/pythonscanner.cpp
index cc75259903..9e80f30e6f 100644
--- a/src/plugins/pythoneditor/pythonscanner.cpp
+++ b/src/plugins/pythoneditor/pythonscanner.cpp
@@ -202,7 +202,7 @@ FormatToken Scanner::readIdentifier()
// List of python built-in functions and objects
static const QSet<QString> builtins = {
- "range", "xrange", "int", "float", "long", "hex", "oct" "chr", "ord",
+ "range", "xrange", "int", "float", "long", "hex", "oct", "chr", "ord",
"len", "abs", "None", "True", "False"
};