Changeset 5369 for nappy/trunk/nappy/utils/common_utils.py
- Timestamp:
- 09/06/09 10:35:57 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
nappy/trunk/nappy/utils/common_utils.py
r5125 r5369 11 11 """ 12 12 13 # Standard library imports 14 import logging 15 13 16 # Imports from local package 14 17 import parse_config 18 19 logging.basicConfig() 20 log = logging.getLogger(__name__) 15 21 16 22 … … 186 192 else: 187 193 return "" 188 # if annotation: return dict[item] + delimiter189 # else: return ''190 194 191 195 … … 195 199 """ 196 200 197 #print "Incoming lines are", lines198 201 split_lines = lines.splitlines(1) 199 202 output = "" … … 204 207 count += 1 205 208 206 #print "Outgoing lines are", output207 209 return output 208 210
Note: See TracChangeset
for help on using the changeset viewer.