Skip to content

Commit

Permalink
[VlcPlayer]
Browse files Browse the repository at this point in the history
* rename tostring -> toString
  • Loading branch information
jbleyel committed Jan 4, 2025
1 parent c5b9471 commit eaeebbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vlcplayer/src/VlcServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def addressType(self):
return self.cfg.addressType

def getHost(self):
return self.cfg.hostip.tostring(self.cfg.hostip.value)
return self.cfg.hostip.toString(self.cfg.hostip.value)

def host(self):
return self.cfg.hostip
Expand Down
4 changes: 2 additions & 2 deletions vlcplayer/src/VlcServerConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ def load(self):
self.currentConfig.saved_value = self.saved_value
self.currentConfig.load()

def tostring(self, value):
return self.currentConfig.tostring(value)
def toString(self, value):
return self.currentConfig.toString(value)

def save(self):
self.currentConfig.save()
Expand Down

0 comments on commit eaeebbf

Please sign in to comment.