- Timestamp:
- 05/18/05 16:42:05 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/edpykota
r2257 r2258 346 346 limitby = protoentry.LimitBy 347 347 balancevalue = protoentry.AccountBalance 348 balance = str(abs(balancevalue)) 348 if balancevalue is not None : 349 balance = str(abs(balancevalue)) 350 else : 351 balance = None 349 352 overcharge = getattr(protoentry, "OverCharge", None) 350 353