190 @return flag indicating success |
190 @return flag indicating success |
191 @rtype bool |
191 @rtype bool |
192 """ |
192 """ |
193 versionKey = "qt_version_{0}@@{1}".format(version, name) |
193 versionKey = "qt_version_{0}@@{1}".format(version, name) |
194 info = engine.customValue(versionKey, "") |
194 info = engine.customValue(versionKey, "") |
195 lst = info.split("|") |
195 lst = info.split("|") if info else [] |
196 |
196 |
197 dt = None |
197 dt = None |
198 if len(lst) and lst[0]: |
198 if len(lst) and lst[0]: |
199 dt = datetime.datetime.fromisoformat(lst[0]) |
199 dt = datetime.datetime.fromisoformat(lst[0]) |
200 |
200 |