Skip to content
This repository was archived by the owner on Aug 28, 2020. It is now read-only.

Commit 240a71d

Browse files
committed
set initial setting for idekey to pugdebug
1 parent 73ca67b commit 240a71d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pugdebug/models/settings.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ def setup_debugger_settings(self):
3838
3939
Sets up the initial host to 127.0.0.1.
4040
Sets up the initial port number to 9000.
41+
Sets up the initial IDE key to pugdebug.
4142
"""
4243
self.application_settings.beginGroup("debugger")
4344

@@ -47,6 +48,9 @@ def setup_debugger_settings(self):
4748
if not self.application_settings.contains('port_number'):
4849
self.application_settings.setValue('port_number', 9000)
4950

51+
if not self.application_settings.contains('idekey'):
52+
self.application_settings.setValue('idekey', 'pugdebug')
53+
5054
self.application_settings.endGroup()
5155

5256
def setup_path_settings(self):

0 commit comments

Comments
 (0)