[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][ftp-team/dak][deploy] 2 commits: Fix typo



Title: GitLab

Joerg Jaspert pushed to branch deploy at Debian FTP Team / dak

Commits:

1 changed file:

Changes:

  • dak/new_security_install.py
    ... ... @@ -95,7 +95,7 @@ def _do_Approve():
    95 95
                 fcntl.flock(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
    
    96 96
                 break
    
    97 97
             except IOError as e:
    
    98
    -            if e.errno in (errno.EACCESS, errno.EAGAIN):
    
    98
    +            if e.errno in (errno.EACCES, errno.EAGAIN):
    
    99 99
                     print "Another process keeping the unchecked lock, waiting."
    
    100 100
                     time.sleep(10)
    
    101 101
                 else:
    


  • Reply to: