From 051ba790b6520b80657cd6666379808ed1c3e0b1 Mon Sep 17 00:00:00 2001 From: Mahmoud Hashemi Date: Fri, 10 Apr 2015 14:47:48 -0700 Subject: [PATCH] correcting tzutils.total_seconds doctest for different imports (should the doc be removed since it's a copy?) --- boltons/tzutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boltons/tzutils.py b/boltons/tzutils.py index d0d1148..91370a5 100644 --- a/boltons/tzutils.py +++ b/boltons/tzutils.py @@ -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 """