##// END OF EJS Templates
Merge pull request #4613 from minrk/configurable-created...
Paul Ivanov -
r13772:2a2f8926 merge
parent child Browse files
Show More
@@ -26,7 +26,6 b' from __future__ import print_function'
26 26 # Imports
27 27 #-----------------------------------------------------------------------------
28 28
29 import datetime
30 29 from copy import deepcopy
31 30
32 31 from .loader import Config, LazyConfigValue
@@ -55,7 +54,6 b' class Configurable(HasTraits):'
55 54
56 55 config = Instance(Config, (), {})
57 56 parent = Instance('IPython.config.configurable.Configurable')
58 created = None
59 57
60 58 def __init__(self, **kwargs):
61 59 """Create a configurable given a config config.
@@ -102,7 +100,6 b' class Configurable(HasTraits):'
102 100 # This should go second so individual keyword arguments override
103 101 # the values in config.
104 102 super(Configurable, self).__init__(**kwargs)
105 self.created = datetime.datetime.now()
106 103
107 104 #-------------------------------------------------------------------------
108 105 # Static trait notifiations
General Comments 0
You need to be logged in to leave comments. Login now