[server] Drop condition on "3.10" migration in repo.init_sources_from_database()
We'll duplicate the code of this method in forthcoming changeset so clean it
up a bit of old stuff.
--- a/cubicweb/server/repository.py Thu Mar 30 16:18:12 2017 +0200
+++ b/cubicweb/server/repository.py Tue Apr 04 16:06:44 2017 +0200
@@ -307,7 +307,7 @@
# internals ###############################################################
def init_sources_from_database(self):
- if self.config.quick_start or 'CWSource' not in self.schema: # 3.10 migration
+ if self.config.quick_start:
self.system_source.init_creating()
return
with self.internal_cnx() as cnx: