﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
10979	FixedOffset.__repr__ is misleading for negative offsets	George Song	George Song	"If you pass a negative offset to `FixedOffset`, the tzinfo representation is misleading:

{{{
>>> from django.utils.tzinfo import FixedOffset
>>> tz = FixedOffset(-510)
>>> tz
-0930
}}}

The attached patch simply calculates the hours as a float, which yields the more correct representation.

{{{
>>> from django.utils.tzinfo import FixedOffset
>>> tz = FixedOffset(-510)
>>> tz
-0830
}}}"		closed	Core (Other)	dev		fixed	tzinfo		Ready for checkin	1	0	0	0	0	0
