| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 8872840 commit c98d159
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -709,7 +709,10 @@ def GetConfiguration(self, context): | |||
| 709 | 709 | (file, pathname, description) = imp.find_module('testcfg', [ self.path ]) | |
| 710 | 710 | module = imp.load_module('testcfg', file, pathname, description) | |
| 711 | 711 | self.config = module.GetConfiguration(context, self.path) | |
| 712 | - self.config.additional_flags = context.node_args | ||
| 712 | + if hasattr(self.config, 'additional_flags'): | ||
| 713 | + self.config.additional_flags += context.node_args | ||
| 714 | + else: | ||
| 715 | + self.config.additional_flags = context.node_args | ||
| 713 | 716 | finally: | |
| 714 | 717 | if file: | |
| 715 | 718 | file.close() | |
| Back | FazBrowse Home | New Git URL |
0 commit comments