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:
		
						commit
						5fb0f4a2e9
					
				@ -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)
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user