We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69a87e6 commit c68b20dCopy full SHA for c68b20d
modules/controller.py
@@ -48,8 +48,9 @@ def print_controllers_list(self, args):
48
old_controllers = self.ton.GetSettings("old_controllers")
49
user_controllers_list = self.ton.GetSettings("user_controllers_list")
50
print("using controllers:")
51
- self.print_controllers_list_process(using_controllers)
52
- if new_controllers != using_controllers:
+ if using_controllers is not None:
+ self.print_controllers_list_process(using_controllers)
53
+ if new_controllers is not None and new_controllers != using_controllers:
54
print()
55
print("new controllers:")
56
self.print_controllers_list_process(new_controllers)
0 commit comments