Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
shrapnel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
shrapnel
Commits
ef9c89f3
Commit
ef9c89f3
authored
Mar 20, 2015
by
Sam Rushing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
need to str(why) to LOG.
parent
a3c3eb52
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
coro/dns/cache.py
coro/dns/cache.py
+1
-1
No files found.
coro/dns/cache.py
View file @
ef9c89f3
...
...
@@ -311,7 +311,7 @@ class dns_cache:
else
:
return
reply
except
OSError
,
why
:
LOG
(
'error'
,
'OSError'
,
why
,
ip
,
qname
)
LOG
(
'error'
,
'OSError'
,
str
(
why
)
,
ip
,
qname
)
raise
DNS_Soft_Error
(
qname
,
qtype
,
ip
,
str
(
why
))
except
EOFError
:
# recv_exact will raise EOFError if it doesn't get enough data.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment