Skip to content

Commit

Permalink
change DAM to DAHR
Browse files Browse the repository at this point in the history
  • Loading branch information
aschn committed Jul 4, 2014
1 parent 03caccf commit ca88573
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyiso/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class BaseClient(object):
logger = logging.getLogger(__name__)

# choices for market and frequency interval labels
MARKET_CHOICES = IntervalChoices(hourly='RTHR', fivemin='RT5M', tenmin='RT5M', na='RT5M', dam='DAM')
MARKET_CHOICES = IntervalChoices(hourly='RTHR', fivemin='RT5M', tenmin='RT5M', na='RT5M', dam='DAHR')
FREQUENCY_CHOICES = IntervalChoices(hourly='1hr', fivemin='5m', tenmin='10m', na='n/a', dam='1hr')

# timezone
Expand Down
2 changes: 1 addition & 1 deletion tests/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_market_choices(self):

self.assertEqual('RTHR', bc.MARKET_CHOICES.hourly)
self.assertEqual('RT5M', bc.MARKET_CHOICES.fivemin)
self.assertEqual('DAM', bc.MARKET_CHOICES.dam)
self.assertEqual('DAHR', bc.MARKET_CHOICES.dam)

def test_freq_choices(self):
"""Frequency choices have expected values."""
Expand Down

0 comments on commit ca88573

Please sign in to comment.