mirror of https://gitlab.com/bashrc2/epicyon
Debug
parent
2101333b92
commit
5fd1fb746d
8
inbox.py
8
inbox.py
|
@ -4792,7 +4792,7 @@ def _inbox_quota_exceeded(queue: {}, queue_filename: str,
|
|||
try:
|
||||
os.remove(queue_filename)
|
||||
except OSError:
|
||||
print('EX: _inbox_quota_exceeded unable to delete ' +
|
||||
print('EX: _inbox_quota_exceeded unable to delete 1 ' +
|
||||
str(queue_filename))
|
||||
queue.pop(0)
|
||||
return True
|
||||
|
@ -4814,7 +4814,7 @@ def _inbox_quota_exceeded(queue: {}, queue_filename: str,
|
|||
try:
|
||||
os.remove(queue_filename)
|
||||
except OSError:
|
||||
print('EX: _inbox_quota_exceeded unable to delete ' +
|
||||
print('EX: _inbox_quota_exceeded unable to delete 2 ' +
|
||||
str(queue_filename))
|
||||
queue.pop(0)
|
||||
return True
|
||||
|
@ -4835,7 +4835,7 @@ def _inbox_quota_exceeded(queue: {}, queue_filename: str,
|
|||
try:
|
||||
os.remove(queue_filename)
|
||||
except OSError:
|
||||
print('EX: _inbox_quota_exceeded unable to delete ' +
|
||||
print('EX: _inbox_quota_exceeded unable to delete 3 ' +
|
||||
str(queue_filename))
|
||||
queue.pop(0)
|
||||
return True
|
||||
|
@ -4857,7 +4857,7 @@ def _inbox_quota_exceeded(queue: {}, queue_filename: str,
|
|||
try:
|
||||
os.remove(queue_filename)
|
||||
except OSError:
|
||||
print('EX: _inbox_quota_exceeded unable to delete ' +
|
||||
print('EX: _inbox_quota_exceeded unable to delete 4 ' +
|
||||
str(queue_filename))
|
||||
queue.pop(0)
|
||||
return True
|
||||
|
|
Loading…
Reference in New Issue