VirtualBox

Ignore:
Timestamp:
Jun 22, 2016 9:10:27 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
108239
Message:

base.py: pylint 1.5.5 fixes

File:
1 edited

Legend:

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

    r61459 r61832  
    172172            reporter.errorXcpt('gethostbyname(%s)' % (sName));
    173173        else:
    174             if sIpAddr == '0.0.0.0':
     174            if sIpAddr != '0.0.0.0':
     175                sName = sIpAddr;
     176            else:
    175177                reporter.error('gethostbyname(%s) -> %s' % (sName, sIpAddr));
    176                 raise;
    177             sName = sIpAddr;
    178178    return sName;
    179179
     
    394394    def lockTask(self):
    395395        """ Wrapper around oCv.acquire(). """
    396         if True: # change to False for debugging deadlocks.
     396        if True is True: # change to False for debugging deadlocks.
    397397            self.oCv.acquire();
    398398        else:
     
    607607                else:
    608608                    uPid    = 0;
    609                     uStatus = 0;
     609                    uStatus = 0;        # pylint: disable=redefined-variable-type
    610610            else:
    611611                try:
Note: See TracChangeset for help on using the changeset viewer.

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