Changeset 894:f1ca11c609ab

Show
Ignore:
Timestamp:
08/31/08 00:33:01 (4 months ago)
Author:
Phil <phil@secdev.org>
Message:

Correct language

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • scapy/arch/__init__.py

    r893 r894  
    1313    GNUPLOT=1 
    1414except ImportError: 
    15     log_loading.info("did not find python gnuplot wrapper . Won't be able to plot") 
     15    log_loading.info("Can't import python gnuplot wrapper . Won't be able to plot.") 
    1616    GNUPLOT=0 
    1717 
     
    2020    PYX=1 
    2121except ImportError: 
    22     log_loading.info("Can't import PyX. Won't be able to use psdump() or pdfdump()") 
     22    log_loading.info("Can't import PyX. Won't be able to use psdump() or pdfdump().") 
    2323    PYX=0 
    2424 
     
    2626    from Crypto.Cipher import ARC4 
    2727except ImportError: 
    28     log_loading.info("Can't find Crypto python lib. Won't be able to decrypt WEP") 
     28    log_loading.info("Can't import python Crypto lib. Won't be able to decrypt WEP.") 
    2929 
    3030