commit | 6f34d904aaa1087c190ceca05cb8fff616b58a63 | [log] [tgz] |
---|---|---|
author | Javi Merino <javi.merino@arm.com> | Sat Feb 21 11:39:09 2015 +0000 |
committer | Javi Merino <javi.merino@arm.com> | Wed Aug 12 16:03:45 2015 +0100 |
tree | 22b01759fe7284767d88acb1de2ef0560117ad21 | |
parent | fe5e54eaeac804107187aab3a299af04728e7289 [diff] [blame] |
base: remove path parameter Now that trace-cmd is done in the Run class, the trace classes don't need the path, so nuke it.
diff --git a/cr2/dynamic.py b/cr2/dynamic.py index 52f4d5d..3f1e028 100644 --- a/cr2/dynamic.py +++ b/cr2/dynamic.py
@@ -23,13 +23,12 @@ from cr2.run import Run -def default_init(self, path=None): +def default_init(self): """Default Constructor for the Dynamic MetaClass """ super(type(self), self).__init__( - basepath=path, unique_word=self.unique_word, )