Skip to content

Commit

Permalink
r.valley.bottom minor fix to formatting of temporary raster names dur…
Browse files Browse the repository at this point in the history
…ing processing
  • Loading branch information
stevenpawley committed Jul 7, 2020
1 parent 943d9c7 commit 84ae995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grass7/raster/r.valley.bottom/r.valley.bottom.py
Expand Up @@ -296,7 +296,7 @@ def get_prelim_flatness(L, F, PCTL, t, p):
Equation 3 (Gallant and Dowling, 2003)"""

PVF = "tmp_PVF{L}" + \
PVF = "tmp_PVF{L}".format(L=L+1) + \
''.join([random.choice(string.ascii_letters + string.digits) for n in range(4)])
TMP_RAST[L].append(PVF)

Expand Down

0 comments on commit 84ae995

Please sign in to comment.