summaryrefslogtreecommitdiff
path: root/bootloader/ota-dfu-python
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2021-02-04 16:36:34 (GMT)
committerGitea <gitea@fake.local>2021-02-04 16:36:34 (GMT)
commit3f7360ca186933b600d362c12e7c62d9df509aa4 (patch)
tree9e7bff44e541526ae50b183a64cfe1d22a13cc56 /bootloader/ota-dfu-python
parent76ab14fa5f7979dd764b449396dc5835a286ec6d (diff)
parent6259b816287f8f74dadf50334a445cd9fe16d415 (diff)
Merge branch 'develop' of JF/PineTime into master
Diffstat (limited to 'bootloader/ota-dfu-python')
-rw-r--r--bootloader/ota-dfu-python/unpacker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader/ota-dfu-python/unpacker.py b/bootloader/ota-dfu-python/unpacker.py
index 960ef9d..ab2ecbc 100644
--- a/bootloader/ota-dfu-python/unpacker.py
+++ b/bootloader/ota-dfu-python/unpacker.py
@@ -13,7 +13,7 @@ class Unpacker(object):
#
#--------------------------------------------------------------------------
def entropy(self, length):
- return ''.join(random.choice('abcdefghijklmnopqrstuvwxyz') for i in range (length))
+ return ''.join(random.choice('abcdefghijklmnopqrstuvwxyz') for i in range (length))
#--------------------------------------------------------------------------
#