From 394f5adca4e7750674d9bf9bfa95434d39c1a0a1 Mon Sep 17 00:00:00 2001 From: Frederic Massart Date: Wed, 16 Apr 2014 13:07:33 +0800 Subject: [PATCH] Missing import of datetime in pull command --- lib/commands/pull.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/commands/pull.py b/lib/commands/pull.py index 11dd02f..aca31d5 100644 --- a/lib/commands/pull.py +++ b/lib/commands/pull.py @@ -25,6 +25,7 @@ http://github.com/FMCorz/mdk import re import os import logging +from datetime import datetime from lib import tools, jira, fetch from lib.command import Command from lib.tools import question @@ -191,6 +192,6 @@ class PullCommand(Command): logging.warning('Error while parsing the list of patches, try a little harder.') continue break - + return toApply -- 2.11.0