From 08474915e75f72cbc3451341911436c90cf6ebec Mon Sep 17 00:00:00 2001 From: Dan White Date: Thu, 25 Oct 2012 18:03:32 -0500 Subject: [PATCH] fix filename construction --- python-lib/devboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.25.1