Skip to content

Commit 5bf8d8b

Browse files
committed
🎨 Fix readme building script
1 parent 1729715 commit 5bf8d8b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/readme.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ def build_readme(src: str, dest: str):
3333
# Replace Dracula Pro screenshot URL
3434
dracula_pro_h2 = soup.find('h2', text="Dracula PRO")
3535
dracula_pro_img_link = dracula_pro_h2.find_next('p').find('a').find('img')
36-
dracula_pro_img_link['src'] = 'https://github.com/dracula/jetbrains/blob/master/docs/screenshots/dracula-pro.png'
36+
dracula_pro_img_link['src'] = \
37+
'https://raw.githubusercontent.com/dracula/jetbrains/master/docs/screenshots/dracula-pro.png'
3738
# Replace Contribution Guide URL
3839
contribution_h2 = soup.find('h2', text="Contribution")
3940
contribution_guide_link = contribution_h2.find_next('p').find('a')

0 commit comments

Comments
 (0)