Changeset 894:f1ca11c609ab
- 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
| r893 |
r894 |
|
| 13 | 13 | GNUPLOT=1 |
|---|
| 14 | 14 | except 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.") |
|---|
| 16 | 16 | GNUPLOT=0 |
|---|
| 17 | 17 | |
|---|
| … | … | |
| 20 | 20 | PYX=1 |
|---|
| 21 | 21 | except 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().") |
|---|
| 23 | 23 | PYX=0 |
|---|
| 24 | 24 | |
|---|
| … | … | |
| 26 | 26 | from Crypto.Cipher import ARC4 |
|---|
| 27 | 27 | except 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.") |
|---|
| 29 | 29 | |
|---|
| 30 | 30 | |
|---|