| Index: tools/push-to-trunk/common_includes.py
|
| diff --git a/tools/push-to-trunk/common_includes.py b/tools/push-to-trunk/common_includes.py
|
| index d2976022c8274176f604964b24a2879cb71046ee..0e57a25bb14c84318b553174f6e71feb8f181004 100644
|
| --- a/tools/push-to-trunk/common_includes.py
|
| +++ b/tools/push-to-trunk/common_includes.py
|
| @@ -245,7 +245,7 @@ class SideEffectHandler(object): # pragma: no cover
|
| return datetime.date.today().strftime("%Y-%m-%d")
|
|
|
| def GetUTCStamp(self):
|
| - time.mktime(datetime.datetime.utcnow().timetuple())
|
| + return time.mktime(datetime.datetime.utcnow().timetuple())
|
|
|
| DEFAULT_SIDE_EFFECT_HANDLER = SideEffectHandler()
|
|
|
|
|