diff roundup/backends/rdbms_common.py @ 7464:82bbb95e5690 issue2550923_computed_property

merge from tip into issue2550923_computed_property
author John Rouillard <rouilj@ieee.org>
date Thu, 08 Jun 2023 00:10:32 -0400
parents ca90f7270cd4 506c86823abb
children 78585199552a
line wrap: on
line diff
--- a/roundup/backends/rdbms_common.py	Mon Nov 07 22:58:38 2022 -0500
+++ b/roundup/backends/rdbms_common.py	Thu Jun 08 00:10:32 2023 -0400
@@ -3258,7 +3258,8 @@
             elif isinstance(prop, hyperdb.Interval):
                 value = date.Interval(value)
             elif isinstance(prop, hyperdb.Password):
-                value = password.Password(encrypted=value)
+                value = password.Password(encrypted=value,
+                                          config=self.db.config)
             elif isinstance(prop, String):
                 value = us2s(value)
                 if not isinstance(value, str):

Roundup Issue Tracker: http://roundup-tracker.org/