summaryrefslogtreecommitdiff
path: root/date.py
diff options
context:
space:
mode:
authorAlexandre Fayolle <alexandre.fayolle@logilab.fr>2010-04-28 08:10:58 +0200
committerAlexandre Fayolle <alexandre.fayolle@logilab.fr>2010-04-28 08:10:58 +0200
commit3ec4893ee725f5d40a4ea870c2c9032bb1453da1 (patch)
tree2bd6ca79b505ee98e4d60a622559ab318aeb0b26 /date.py
parent8b8a9966e49dd29c621d7a33a7f249250b2ffbc5 (diff)
downloadlogilab-common-3ec4893ee725f5d40a4ea870c2c9032bb1453da1.tar.gz
updated warning text to reflect the real name of unavailable method
Diffstat (limited to 'date.py')
-rw-r--r--date.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/date.py b/date.py
index 36f6e86..b01ed1f 100644
--- a/date.py
+++ b/date.py
@@ -33,7 +33,7 @@ try:
from mx.DateTime import RelativeDateTime, Date, DateTimeType
except ImportError:
from warnings import warn
- warn("mxDateTime not found, endsOfMonth won't be available")
+ warn("mxDateTime not found, endOfMonth won't be available")
endOfMonth = None
DateTimeType = datetime
else: