From 0ce6f75ac5ca4a51cd916f5450dbd7195e27695d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sun, 12 Mar 2017 16:27:39 +0100 Subject: Upgrade to peewee-2.9.1, remove now fixed workaround --- archivist/peewee_fixes.py | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'archivist') diff --git a/archivist/peewee_fixes.py b/archivist/peewee_fixes.py index ff914da..3b9fc2e 100644 --- a/archivist/peewee_fixes.py +++ b/archivist/peewee_fixes.py @@ -1,15 +1,3 @@ -from peewee import QueryCompiler, strip_parens, ForeignKeyField - __all__ = [] -def _parse_select_query(self, node, alias_map, conv): - clone = node.clone() - if not node._explicit_selection: - if conv and isinstance(conv, ForeignKeyField): - clone._select = (conv.to_field,) - else: - clone._select = clone.model_class._meta.get_primary_key_fields() - sub, params = self.generate_select(clone, alias_map) - return '(%s)' % strip_parens(sub), params - -QueryCompiler._parse_select_query = _parse_select_query +# Nothing to fix atm -- cgit v1.2.3