Bläddra i källkod

Fixes indentation in depot configuration procedure

Adrien Panay 7 år sedan
förälder
incheckning
cbe8f91af7
1 ändrade filer med 4 tillägg och 2 borttagningar
  1. 4 2
      tracim/tracim/config/app_cfg.py

+ 4 - 2
tracim/tracim/config/app_cfg.py Visa fil

@@ -132,8 +132,10 @@ def configure_depot():
132 132
     depot_storage_name = 'default'
133 133
     depot_storage_path = CFG.get_instance().DEPOT_STORAGE_DIR
134 134
     depot_storage_settings = {'depot.storage_path': depot_storage_path}
135
-    DepotManager.configure(depot_storage_name,
136
-                           depot_storage_settings)
135
+    DepotManager.configure(
136
+        depot_storage_name,
137
+        depot_storage_settings,
138
+    )
137 139
 
138 140
 
139 141
 environment_loaded.register(lambda: start_daemons(daemons))