You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on OSX using w3af itwill throw an error about:
File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xdot.py", line 494, in read_number
return int(self.read_code())
Upon opening the file i located the function read_number(). It is typcasting to an int from a string, therefore failing. To fix this I modified the function from:
I could send you a pull request with the changes that vekt0r@me.com proposes, but first I would like to know if you believe that this will fix the issue and you'll actually merge it.
The text was updated successfully, but these errors were encountered:
A careful review of your code shows that some of your read_number were translated to read_float instead of read_int... hmmm... looks like this issue should be already fixed in 0.6. Could you confirm?
https://code.google.com/p/jrfonseca/issues/detail?id=93 explains the issue well:
Your code has changed a little bit now and instead of
read_number
you've gotread_int
, but I guess the same issue applies.Users have reported this on the w3af project repository in the past andresriancho/w3af#1327 andresriancho/w3af#1089
I could send you a pull request with the changes that vekt0r@me.com proposes, but first I would like to know if you believe that this will fix the issue and you'll actually merge it.
The text was updated successfully, but these errors were encountered: