Changeset 16:a80165768cd1 in stamper
- Timestamp:
- Jul 19, 2014, 9:49:54 AM (11 years ago)
- Branch:
- default
- Phase:
- public
- File:
- 
      - 1 edited
 
 - 
          
  bin/stamp2json (modified) (1 diff)
 
Legend:
- Unmodified
- Added
- Removed
- 
      bin/stamp2jsonr11 r16 46 46 47 47 else: 48 customer = info.split(' ', 1)[0] 49 action = info.split(' ', 1)[1].lstrip('- ') 48 info_items = info.split(' ', 1) 49 customer = info_items[0] 50 action = '' 51 if len(info_items) > 1: 52 action = info_items[1].lstrip('- ') 50 53 end_time = time 51 54 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
