@@ -69,9 +69,10 @@ def to_native_path_linux(path):
69
69
to_native_path = to_native_path_linux
70
70
71
71
def join_path_native (a , * p ):
72
- """As join path, but makes sure an OS native path is returned. This is only
73
- needed to play it safe on my dear windows and to assure nice paths that only
74
- use '\' """
72
+ """
73
+ As join path, but makes sure an OS native path is returned. This is only
74
+ needed to play it safe on my dear windows and to assure nice paths that only
75
+ use '\' """
75
76
return to_native_path (join_path (a , * p ))
76
77
77
78
def assure_directory_exists (path , is_file = False ):
@@ -187,10 +188,11 @@ def _main_actor(cls, env_name, env_email, config_reader=None):
187
188
188
189
@classmethod
189
190
def committer (cls , config_reader = None ):
190
- """:return: Actor instance corresponding to the configured committer. It behaves
191
- similar to the git implementation, such that the environment will override
192
- configuration values of config_reader. If no value is set at all, it will be
193
- generated
191
+ """
192
+ :return: Actor instance corresponding to the configured committer. It behaves
193
+ similar to the git implementation, such that the environment will override
194
+ configuration values of config_reader. If no value is set at all, it will be
195
+ generated
194
196
:param config_reader: ConfigReader to use to retrieve the values from in case
195
197
they are not set in the environment"""
196
198
return cls ._main_actor (cls .env_committer_name , cls .env_committer_email , config_reader )
0 commit comments