2008/12/11 traef06 RAEF <[email protected]>: > After performing svn co https://w3af.svn.sourceforge.net/svnroot/w3af/trunk > w3af and letting it run, I change to the w3af directory and run: > ./w3af_console and get: > > Traceback (most recent call last): > File "./w3af_console", line 96, in ? > errCode = main() > File "./w3af_console", line 72, in main > from core.ui.consoleUi.consoleUi import consoleUi > File "/usr/src/w3af/core/ui/consoleUi/consoleUi.py", line 28, in ? > from core.ui.consoleUi.rootMenu import * > File "/usr/src/w3af/core/ui/consoleUi/rootMenu.py" line 23, in ? > from core.ui.consoleUi.menu import * > File "/usr/src/w3af/core/ui/consoleUi/menu.py" line 25, in ? > import core.data.kb.knowledgeBase as kb > File "/usr/src/w3af/core/data/kb/knowledgeBase.py", line 52 > with self._kbLock:
This is too strange. Could you please open a python interpreter and do the following (copying all the output, as in this example): Python 2.5.2 (r252:60911, Oct 5 2008, 19:24:49) [GCC 4.3.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> from __future__ import with_statement >>> with open(): ... pass ... Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: file() takes at least 1 argument (0 given) >>> Thank you! -- . Facundo Blog: http://www.taniquetil.com.ar/plog/ PyAr: http://www.python.org/ar/ ------------------------------------------------------------------------------ SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. The future of the web can't happen without you. Join us at MIX09 to help pave the way to the Next Web now. Learn more and register at http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ _______________________________________________ W3af-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/w3af-users
