Skip to content

Commit

Permalink
Use config.has_section() instead of a separate dict
Browse files Browse the repository at this point in the history
  • Loading branch information
amit committed Feb 18, 2011
1 parent d7c771b commit 9de2109
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions planet/csv_config.py
Expand Up @@ -11,12 +11,10 @@ def csv2config(input, config=None):
config = ConfigParser()

reader = csv.DictReader(input)
d = {}
for row in reader:
section = row[reader.fieldnames[0]]
if not d.get(section):
if not config.has_section(section):
config.add_section(section)
d[section] = 1
for name, value in row.items():
if value and name != reader.fieldnames[0]:
config.set(section, name, value)
Expand Down

0 comments on commit 9de2109

Please sign in to comment.