From: Dan White Date: Thu, 25 Oct 2012 23:03:32 +0000 (-0500) Subject: fix filename construction X-Git-Tag: bootrom-initial-submission~55 X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=08474915e75f72cbc3451341911436c90cf6ebec;p=430.git fix filename construction --- diff --git a/python-lib/devboard.py b/python-lib/devboard.py index 65f0e7a..2d0c91e 100644 --- a/python-lib/devboard.py +++ b/python-lib/devboard.py @@ -193,7 +193,7 @@ def init_devboard(name='devboard-defaults.yaml'): # try loading config for given chip ID if isinstance(name, int): - name = 'chip%02i.calibration.yaml' % name + name = 'chip%02i-calibration.yaml' % name try: load_config(name)