VirtualBox

Ignore:
Timestamp:
Jan 13, 2018 12:02:51 AM (7 years ago)
Author:
vboxsync
Message:

testdriver/reporter.py: Python 3 fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testdriver/reporter.py

    r70566 r70570  
    726726        May raise exception on HTTP issue (retry ok).
    727727        """
    728         import httplib;
     728        if sys.version_info[0] >= 3:    import http.client as httplib;  # pylint: disable=no-name-in-module,import-error
     729        else:                           import httplib;                 # pylint: disable=import-error
    729730        from common import constants;
    730731
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette