Skip to content

Commit 0cd6482

Browse files
committed
Fix #22 fails with TypeError if a key containing integer was removed.
1 parent b72520a commit 0cd6482

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGES

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
ChangeLog for RMA
22
--------------------
3-
- 0.1.12
3+
- 0.1.13
44

55
* Fix fails with TypeError if a key containing integer was removed.
66
Closes issue #22.
7+
8+
- 0.1.12
9+
10+
* Fix fails with ResponseError if a key containing integer was removed.
11+
Closes issue #22.
712
* Add more info to global rule description.
813

914
- 0.1.11

rma/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
num_version = (0, 1, 12)
1+
num_version = (0, 1, 13)
22
version = '.'.join([str(num) for num in num_version])
33

44
classifiers = [

rma/rule/ValueString.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ def get_int_encoded_bytes(redis, key_name):
1919
pass
2020
except ResponseError:
2121
pass
22+
except TypeError:
23+
pass
2224

2325
return size_of_pointer_fn()
2426

0 commit comments

Comments
 (0)