From 1c01665fe71e6c9766f6f6128541738195f666ab Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 22 Apr 2014 20:30:12 +0530 Subject: [PATCH] ... --- setup/qt5-migrate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/qt5-migrate.py b/setup/qt5-migrate.py index 50c3a6fa42..5693e56695 100644 --- a/setup/qt5-migrate.py +++ b/setup/qt5-migrate.py @@ -48,7 +48,7 @@ def all_py_files(): def detect_qvariant(): count = 0 - pat = re.compile(b'|'.join(br'QVariant NONE toDateTime toDate isValid toInt toBool toString\(\) toPyObject canConvert toBitArray toByteArray toHash toFloat toMap toLine toPoint toReal toRect toTime toUInt toUrl'.split())) # noqa + pat = re.compile(b'|'.join(br'QVariant NONE toDateTime toDate toInt toBool toString\(\) toPyObject canConvert toBitArray toByteArray toHash toFloat toMap toLine toPoint toReal toRect toTime toUInt toUrl'.split())) # noqa exclusions = { 'src/calibre/gui2/viewer/gestures.py': {'toPoint'}, }