Browse Source

Fixes indentation in depot configuration procedure

Adrien Panay 7 years ago
parent
commit
cbe8f91af7
1 changed files with 4 additions and 2 deletions
  1. 4 2
      tracim/tracim/config/app_cfg.py

+ 4 - 2
tracim/tracim/config/app_cfg.py View File

132
     depot_storage_name = 'default'
132
     depot_storage_name = 'default'
133
     depot_storage_path = CFG.get_instance().DEPOT_STORAGE_DIR
133
     depot_storage_path = CFG.get_instance().DEPOT_STORAGE_DIR
134
     depot_storage_settings = {'depot.storage_path': depot_storage_path}
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
 environment_loaded.register(lambda: start_daemons(daemons))
141
 environment_loaded.register(lambda: start_daemons(daemons))