aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarcus2011-06-30 12:54:15 +0000
committermarcus2011-06-30 12:54:15 +0000
commit3de3353b89ba3a9e54facf50bcbe46c8c1b8efc7 (patch)
tree8df7bfc62acd4fbeff7f83efe348470e198db060
parent35830bc99782a6f125bf222b512c5d6e44d18b1d (diff)
Fixing the example MAC in the config file generator: we use upper case.
-rw-r--r--nxt/locator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nxt/locator.py b/nxt/locator.py
index 4f15ce0..5c14815 100644
--- a/nxt/locator.py
+++ b/nxt/locator.py
@@ -164,7 +164,7 @@ def make_config(confpath=None):
return
conf.add_section('Brick')
conf.set('Brick', 'name', 'MyNXT')
- conf.set('Brick', 'host', '54:32:59:92:f9:39')
+ conf.set('Brick', 'host', '54:32:59:92:F9:39')
conf.set('Brick', 'strict', 0)
conf.set('Brick', 'method', 'usb=True, bluetooth=False, fantomusb=True')
conf.write(open(confpath, 'w'))