Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Oskar Roesler
ros-aur-helpers
Commits
94f6f826
Commit
94f6f826
authored
Dec 08, 2020
by
Felix Exner
Committed by
Oskar Roesler
Dec 08, 2020
Browse files
Fix check_and_create_path function
The old code should not have been working I think.
parent
c09ae7d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
aurci/general.py
aurci/general.py
+2
-1
No files found.
aurci/general.py
View file @
94f6f826
...
...
@@ -35,7 +35,8 @@ class Routines:
@
staticmethod
def
check_and_create_path
(
path
):
if
not
(
os
.
path
.
exists
(
path
)):
Path
.
mkdir
(
path
)
p
=
Path
(
path
)
p
.
mkdir
(
parents
=
True
)
def
get_config
(
self
):
configfile_path
=
os
.
path
.
join
(
self
.
config_path
,
'config.ini'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment