diff --git a/src/flask_covid19/blueprints/data_rki/rki_service_update.py b/src/flask_covid19/blueprints/data_rki/rki_service_update.py
index 9a4d6923f84c9ab61c7a4b52772d6b1407087066..956f6ca285fbd2655b0faa9f07bf2cff90f03e32 100644
--- a/src/flask_covid19/blueprints/data_rki/rki_service_update.py
+++ b/src/flask_covid19/blueprints/data_rki/rki_service_update.py
@@ -199,7 +199,7 @@ class RkiServiceUpdateFull(RkiServiceUpdateBase):
         for my_meldedatum in RkiMeldedatum.find_all():
             my_meldedatum_datum = my_meldedatum.datum
             for my_landkreis in RkiLandkreis.find_all():
-                my_landkreis_key = my_landkreis.location_type() + " " + my_landkreis.location
+                my_landkreis_key = my_landkreis.location_type + " " + my_landkreis.location
                 # app.logger.info(" my_meldedatum: " + str(my_meldedatum) + " " + d.isoformat())
                 # app.logger.info("------------------------------------------------------------")
                 list_imports = RkiImport.find_by_meldedatum_and_landkreis(
@@ -244,12 +244,12 @@ class RkiServiceUpdateFull(RkiServiceUpdateBase):
                     db.session.add(o)
                     k += 1
                     i += 1
-                d += 1
-                if d % 7 == 0:
-                    db.session.commit()
-                    sd = str(my_meldedatum)
-                    app.logger.info(" full update RKI data ... " + str(i) + " rows ... " + sd + " (" + str(k) + ")")
-                    k = 0
+            d += 1
+            if d % 7 == 0:
+                db.session.commit()
+                sd = str(my_meldedatum)
+                app.logger.info(" full update RKI data ... " + str(i) + " rows ... " + sd + " (" + str(k) + ")")
+                k = 0
         db.session.commit()
         app.logger.info(" full update RKI data ... " + str(i) + " total rows")
         app.logger.info("")