Merge branch 'lash/horse-cart' into 'master'

Fix false offset limit error

Closes #60

See merge request grassrootseconomics/cic-internal-integration!174
This commit is contained in:
Louis Holbrook 2021-06-02 15:27:30 +00:00
commit 5fb0f4a2e9
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ def process_transactions_all_data(session, env):
offset = r[1]
end = r[2]
if r[2] < r[1]:
if int(r[2]) < int(r[1]):
raise ValueError('cart before the horse, dude')
c = DataCache(session)