Skip to content

Commit a7815ab

Browse files
authored
Merge pull request #324
Fix path in konsole.py
2 parents 508b167 + 73a4bc7 commit a7815ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

yin_yang/plugins/konsole.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,11 +239,11 @@ def create_profiles(self):
239239

240240
def set_profile(self, service: str, profile: str, set_default_profile: bool = False):
241241
if set_default_profile:
242-
path = 'Sessions/'
242+
path = '/Sessions'
243243
interface = 'org.kde.konsole.Session'
244244
method = 'setProfile'
245245
else:
246-
path = 'Windows/'
246+
path = '/Windows'
247247
interface = 'org.kde.konsole.Window'
248248
method = 'setDefaultProfile'
249249

0 commit comments

Comments
 (0)