Changeset 6514
- Timestamp:
- Dec 30, 2008, 1:48:18 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/exodus/forms.py
r6513 r6514 355 355 iface = self.cleaned_data.get('iface') 356 356 accesspoint = self.cleaned_data.get('accesspoint') 357 direction = get_direction_choices(self.cleaned_data.get('direction'))357 direction = self.cleaned_data.get('direction') 358 358 link = self.cleaned_data.get('link') 359 359 orig_ssid = self.cleaned_data.get('ssid') … … 361 361 if not link_is_wireless(self): 362 362 return None 363 363 if direction: 364 direction = get_direction_choices(direction) 364 365 # iface is saved for the first time 365 366 if not edit and not link:
Note:
See TracChangeset
for help on using the changeset viewer.