File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ def create_or_check_consent_dir(self):
148
148
"""
149
149
base_dir = self .consent_file_base_dir ()
150
150
consent_file_subdirectory = self .consent_file_subdirectory ()
151
- if self . consent_file_base_dir () is None or consent_file_subdirectory is None :
151
+ if base_dir is None or consent_file_subdirectory is None :
152
152
return False
153
153
base_is_dir = os .path .isdir (base_dir )
154
154
base_dir_exists = os .path .exists (base_dir )
@@ -161,7 +161,7 @@ def create_or_check_consent_dir(self):
161
161
"Please allow write access to the following directory: {}" .format (base_dir ))
162
162
return False
163
163
164
- consent_file_dir = os .path .join (self . consent_file_base_dir () , consent_file_subdirectory )
164
+ consent_file_dir = os .path .join (base_dir , consent_file_subdirectory )
165
165
consent_file_is_dir = os .path .isdir (consent_file_dir )
166
166
consent_file_dir_exists = os .path .exists (consent_file_dir )
167
167
You can’t perform that action at this time.
0 commit comments