cubicweb/dataimport/stores.py
changeset 12542 85194bd49119
parent 12504 362fdb399ff5
child 12567 26744ad37953
--- a/cubicweb/dataimport/stores.py	Tue Mar 26 13:08:13 2019 +0100
+++ b/cubicweb/dataimport/stores.py	Fri Mar 22 17:42:36 2019 +0100
@@ -58,7 +58,6 @@
 .. autoclass:: cubicweb.dataimport.stores.MetadataGenerator
 """
 import inspect
-import warnings
 from datetime import datetime
 from copy import copy
 from itertools import count
@@ -115,13 +114,9 @@
     """Store that works by making RQL queries, hence with all the cubicweb's machinery activated.
     """
 
-    def __init__(self, cnx, commit=None):
-        if commit is not None:
-            warnings.warn('[3.19] commit argument should not be specified '
-                          'as the cnx object already provides it.',
-                          DeprecationWarning, stacklevel=2)
+    def __init__(self, cnx):
         self._cnx = cnx
-        self._commit = commit or cnx.commit
+        self._commit = cnx.commit
         # XXX 3.21 deprecated attributes
         self.eids = {}
         self.types = {}