Skip to content

Commit

Permalink
Merge pull request #80 from cmason3/v1.18.2
Browse files Browse the repository at this point in the history
make hierarchical counters row specific
  • Loading branch information
cmason3 authored Oct 25, 2023
2 parents 50374ca + 70ce4c6 commit a2ef749
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jinjafx.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from cryptography.hazmat.primitives.ciphers.modes import CTR
from cryptography.exceptions import InvalidSignature

__version__ = '1.18.1'
__version__ = '1.18.2'

__all__ = ['JinjaFx', 'Vault']

Expand Down Expand Up @@ -1167,7 +1167,7 @@ def __jfx_counter(self, key=None, increment=1, start=1):
key = '_cnt_r_' + str(self.__g_row)

elif str(key).endswith('.') and self.__g_hcounter.match(key):
nkey = '_cnt_hk'
nkey = '_cnt_hk' + str(self.__g_row)
kelements = key[:-1].lower().split('.')

for i, v in enumerate(kelements[:-1]):
Expand Down

0 comments on commit a2ef749

Please sign in to comment.