diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/scriptutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/scriptutils.py b/scripts/lib/scriptutils.py index 11f1a78e97..85b1c949bf 100644 --- a/scripts/lib/scriptutils.py +++ b/scripts/lib/scriptutils.py | |||
@@ -134,7 +134,7 @@ def fetch_url(tinfoil, srcuri, srcrev, destdir, logger, preserve_tmp=False, mirr | |||
134 | # for do_fetch and do_unpack | 134 | # for do_fetch and do_unpack |
135 | # I'd use tempfile functions here but underscores can be produced by that and those | 135 | # I'd use tempfile functions here but underscores can be produced by that and those |
136 | # aren't allowed in recipe file names except to separate the version | 136 | # aren't allowed in recipe file names except to separate the version |
137 | rndstring = ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(8)) | 137 | rndstring = ''.join(random.choice(string.ascii_lowercase + string.digits) for _ in range(8)) |
138 | fetchrecipe = os.path.join(fetchrecipedir, 'tmp-recipetool-%s.bb' % rndstring) | 138 | fetchrecipe = os.path.join(fetchrecipedir, 'tmp-recipetool-%s.bb' % rndstring) |
139 | fetchrecipepn = os.path.splitext(os.path.basename(fetchrecipe))[0] | 139 | fetchrecipepn = os.path.splitext(os.path.basename(fetchrecipe))[0] |
140 | logger.debug('Generating initial recipe %s for fetching' % fetchrecipe) | 140 | logger.debug('Generating initial recipe %s for fetching' % fetchrecipe) |