Changeset 79087 in vbox for trunk/src/VBox/ValidationKit/testboxscript/testboxconnection.py
- Timestamp:
- Jun 11, 2019 11:58:28 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131247
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testboxscript/testboxconnection.py
r76553 r79087 149 149 # When connecting we're using a 15 second timeout, we increase it later. 150 150 # 151 if self._oParsedUrl.scheme == 'https': # pylint: disable= E1101151 if self._oParsedUrl.scheme == 'https': # pylint: disable=no-member 152 152 fnCtor = httplib.HTTPSConnection; 153 153 else: … … 199 199 'Connection': 'keep-alive', 200 200 }; 201 sServerPath = '/%s/testboxdisp.py' % (self._oParsedUrl.path.strip('/'),); # pylint: disable= E1101201 sServerPath = '/%s/testboxdisp.py' % (self._oParsedUrl.path.strip('/'),); # pylint: disable=no-member 202 202 dParams[constants.tbreq.ALL_PARAM_ACTION] = sAction; 203 203 sBody = urllib_urlencode(dParams);
Note:
See TracChangeset
for help on using the changeset viewer.