Changeset 2939
- Timestamp:
- 05/23/08 16:24:37 (5 years ago)
- Files:
-
- 1 modified
-
trunk/umitCore/NmapCommand.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/umitCore/NmapCommand.py
r2918 r2939 288 288 289 289 def add_option(self, option_name, args=[], level=False): 290 if option_name == "None" and not args and not level: 290 if (not option_name) or \ 291 (option_name == "None" and not args and not level): 291 292 # this certainly shouldn't be added 292 293 return
