correcting tzutils.total_seconds doctest for different imports (should the doc be removed since it's a copy?)

This commit is contained in:
Mahmoud Hashemi 2015-04-10 14:47:48 -07:00
parent 54fb457a8d
commit 051ba790b6
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ def total_seconds(td):
Returns:
float: total number of seconds
>>> td = datetime.timedelta(days=4, seconds=33)
>>> td = timedelta(days=4, seconds=33)
>>> total_seconds(td)
345633.0
"""