Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Tristan Cavelier
erp5
Commits
1004bfeb
Commit
1004bfeb
authored
7 years ago
by
Vincent Pelletier
Browse files
Options
Download
Email Patches
Plain Diff
ZODBContinuousIncreasingIdGenerator: Tolerate longs as well.
parent
6bc6f87e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
product/ERP5/Document/ZODBContinuousIncreasingIdGenerator.py
product/ERP5/Document/ZODBContinuousIncreasingIdGenerator.py
+1
-1
No files found.
product/ERP5/Document/ZODBContinuousIncreasingIdGenerator.py
View file @
1004bfeb
...
@@ -146,7 +146,7 @@ class ZODBContinuousIncreasingIdGenerator(IdGenerator):
...
@@ -146,7 +146,7 @@ class ZODBContinuousIncreasingIdGenerator(IdGenerator):
if
not
isinstance
(
id_dict
,
dict
):
if
not
isinstance
(
id_dict
,
dict
):
raise
TypeError
,
'the argument given is not a dictionary'
raise
TypeError
,
'the argument given is not a dictionary'
for
value
in
id_dict
.
values
():
for
value
in
id_dict
.
values
():
if
not
isinstance
(
value
,
int
):
if
not
isinstance
(
value
,
(
int
,
long
)
):
raise
TypeError
,
'the value given in dictionary is not a integer'
raise
TypeError
,
'the value given in dictionary is not a integer'
self
.
last_id_dict
.
update
(
id_dict
)
self
.
last_id_dict
.
update
(
id_dict
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment