Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 536656
Collapse All | Expand All

(-)file_not_specified_in_diff (-3 / +3 lines)
Line  Link Here
0
-- mendeleydesktop-1.13.1/bin/mendeleydesktop.orig 2015-01-15 15:49:15.589870680 +0100
0
++ mendeleydesktop-1.13.1/bin/mendeleydesktop 2015-01-15 15:46:49.308954069 +0100
Lines 95-105 Link Here
95
		# Both version components are non-numeric, treat
95
		# Both version components are non-numeric, treat
96
		# them as equal
96
		# them as equal
97
		return False
97
		return False
98
	elif (version_part_a and version_part_b is None):
98
	elif (type(version_part_a) is int and version_part_b is None):
99
		# Left version component is numeric, right component is not.
99
		# Left version component is numeric, right component is not.
100
		# Treat the numeric part as greater
100
		# Treat the numeric part as greater
101
		return False
101
		return False
102
	elif (version_part_b and version_part_a is None):
102
	elif (type(version_part_b) is int and version_part_a is None):
103
		# Right version component is numeric, left component is not.
103
		# Right version component is numeric, left component is not.
104
		# Treat the numeric part as greater
104
		# Treat the numeric part as greater
105
		return True
105
		return True

Return to bug 536656