Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caucase
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
caucase
Commits
708ee113
Commit
708ee113
authored
Jul 14, 2018
by
Vincent Pelletier
Committed by
Vincent Pelletier
Jul 15, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http: Word-wrap a long line.
parent
59e7da94
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
caucase/http.py
caucase/http.py
+5
-1
No files found.
caucase/http.py
View file @
708ee113
...
...
@@ -430,7 +430,11 @@ def main(argv=None, until=utils.until):
base_url
=
u'http://'
+
args
.
netloc
.
decode
(
'ascii'
)
parsed_base_url
=
urlparse
(
base_url
)
hostname
=
parsed_base_url
.
hostname
http_port
=
parsed_base_url
.
port
if
args
.
base_port
is
None
else
args
.
base_port
http_port
=
(
parsed_base_url
.
port
if
args
.
base_port
is
None
else
args
.
base_port
)
https_port
=
443
if
http_port
==
80
else
http_port
+
1
cau_crt_life_time
=
args
.
user_crt_validity
cau
=
UserCertificateAuthority
(
...
...
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