# HG changeset patch # User Bryan O'Sullivan # Date 1191358019 25200 # Node ID c6adf2be6069c206a4104dc28adfedcf296b8a46 # Parent f0931c0240b49ea3d7866e3bd09e587b82200024 util: add default argument to strdate diff -r f0931c0240b4 -r c6adf2be6069 mercurial/util.py --- a/mercurial/util.py Tue Oct 02 13:46:17 2007 -0700 +++ b/mercurial/util.py Tue Oct 02 13:46:59 2007 -0700 @@ -1468,7 +1468,7 @@ s += timezone_format % (-tz / 3600, ((-tz % 3600) / 60)) return s -def strdate(string, format, defaults): +def strdate(string, format, defaults=[]): """parse a localized time string and return a (unixtime, offset) tuple. if the string cannot be parsed, ValueError is raised.""" def timezone(string):