Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix path module. os.path->pathlib #1766

Closed
wants to merge 1 commit into from

Conversation

hrsano645
Copy link

@hrsano645 hrsano645 commented Sep 2, 2022

Changes in this pull request:

(only jp document)

  • Changed the libraries used in the documentation. os.path -> pathlib

@@ -98,7 +98,7 @@ LANGUAGE_CODE = 'ja'

```python
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
STATIC_ROOT = BASE_DIR, / 'static'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suggest a comma is not considered necessary. ( Inspired by @kashewnuts .)

Suggested change
STATIC_ROOT = BASE_DIR, / 'static'
STATIC_ROOT = BASE_DIR / 'static'

@ryu22e
Copy link
Contributor

ryu22e commented Feb 10, 2023

Hello. It seems to me that this PR can be merged by addressing the following comment, what is stopping you?

#1766 (comment)

I had a participant at one of my events who was stumped by this code.
It would be helpful if you could merge it as soon as possible.

@ryu22e
Copy link
Contributor

ryu22e commented Mar 10, 2023

Hello. Since the creator of this PR seems to be busy, I have created a PR on my end.
Could someone please review it for me?
#1786

@das-g
Copy link
Member

das-g commented Mar 18, 2023

Fixed with #1786 & #1787.

@das-g das-g closed this Mar 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants