Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
621f698a
Unverified
Commit
621f698a
authored
May 11, 2020
by
finswimmer
Committed by
GitHub
May 11, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
utils: add missing comma in list of valid url schemes
parent
0e9e9944
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
poetry/packages/utils/utils.py
+2
-3
No files found.
poetry/packages/utils/utils.py
View file @
621f698a
...
...
@@ -22,13 +22,11 @@ try:
except
ImportError
:
import
urlparse
try
:
import
urllib.request
as
urllib2
except
ImportError
:
import
urllib2
BZ2_EXTENSIONS
=
(
".tar.bz2"
,
".tbz"
)
XZ_EXTENSIONS
=
(
".tar.xz"
,
".txz"
,
".tlz"
,
".tar.lz"
,
".tar.lzma"
)
ZIP_EXTENSIONS
=
(
".zip"
,
".whl"
)
...
...
@@ -77,7 +75,8 @@ def is_url(name):
"hg"
,
"bzr"
,
"sftp"
,
"svn"
"ssh"
,
"svn"
,
"ssh"
,
]
...
...
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