Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Fix typo
· 4194a6a5
Joerg Jaspert
authored
Apr 20, 2018
4194a6a5
Merge branch 'master' into deploy
· 30dc003c
Joerg Jaspert
authored
Apr 20, 2018
* master: Fix typo
30dc003c
Show whitespace changes
Inline
Side-by-side
dak/new_security_install.py
View file @
30dc003c
...
...
@@ -95,7 +95,7 @@ def _do_Approve():
fcntl
.
flock
(
lock_fd
,
fcntl
.
LOCK_EX
|
fcntl
.
LOCK_NB
)
break
except
IOError
as
e
:
if
e
.
errno
in
(
errno
.
EACCES
S
,
errno
.
EAGAIN
):
if
e
.
errno
in
(
errno
.
EACCES
,
errno
.
EAGAIN
):
print
"
Another process keeping the unchecked lock, waiting.
"
time
.
sleep
(
10
)
else
:
...
...