Преглед изворни кода

Fixes indentation in depot configuration procedure

Adrien Panay пре 7 година
родитељ
комит
cbe8f91af7
1 измењених фајлова са 4 додато и 2 уклоњено
  1. 4 2
      tracim/tracim/config/app_cfg.py

+ 4 - 2
tracim/tracim/config/app_cfg.py Прегледај датотеку

@@ -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))