Skip to content

Commit

Permalink
fix gui with new version of xbmc
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Genty committed Oct 15, 2014
1 parent 7cf3329 commit d64791b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion geexbox.updater/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

import sys
import os
import xbmc
import xbmcaddon

__scriptname__ = "GeeXboX Updater"
Expand All @@ -35,7 +36,7 @@
BASE_RESOURCE_PATH = xbmc.translatePath( os.path.join( __cwd__, "resources", "lib" ) )
sys.path.append (BASE_RESOURCE_PATH)

xbmc.output("##### [%s] - Version: %s" % (__scriptname__,__version__,),level=xbmc.LOGDEBUG )
xbmc.log("##### [%s] - Version: %s" % (__scriptname__,__version__,),level=xbmc.LOGDEBUG )

if ( __name__ == "__main__" ):
import gui
Expand Down
2 changes: 1 addition & 1 deletion geexbox.updater/resources/lib/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def onClick( self, controlId ):
##-------- Log ------------##

def log(self, msg):
xbmc.output("##### [%s] - Debug msg: %s" % (__scriptname__,msg,),level=xbmc.LOGDEBUG )
xbmc.log("##### [%s] - Debug msg: %s" % (__scriptname__,msg,),level=xbmc.LOGDEBUG )

##--------- End Script ------##

Expand Down

0 comments on commit d64791b

Please sign in to comment.