Use non-url-encoded source URL to avoid CI rejection for too-long line

This commit is contained in:
Ariel Allon
2019-10-28 00:01:21 -05:00
committed by Ernesto Rodriguez Ortiz
parent 28c304c2f4
commit c1e3e854bb

View File

@@ -129,7 +129,7 @@ def int2word(n):
if i > 0: if i > 0:
words.append(THOUSANDS[i][0]) words.append(THOUSANDS[i][0])
# source: https://hebrew-academy.org.il/2017/01/30/%d7%95-%d7%94%d7%97%d7%99%d7%91%d7%95%d7%a8-%d7%91%d7%9e%d7%a1%d7%a4%d7%a8%d7%99%d7%9d/ # source: https://hebrew-academy.org.il/2017/01/30/ו-החיבור-במספרים/
if len(words) > 1: if len(words) > 1:
words[-1] = AND + words[-1] words[-1] = AND + words[-1]