mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-16 01:45:08 +00:00
e56303798c
Initial SickGear for Python 3.
15 lines
217 B
Python
15 lines
217 B
Python
from ..base import *
|
|
|
|
@Js
|
|
def console():
|
|
pass
|
|
|
|
@Js
|
|
def log():
|
|
print(arguments[0])
|
|
|
|
console.put('log', log)
|
|
console.put('debug', log)
|
|
console.put('info', log)
|
|
console.put('warn', log)
|
|
console.put('error', log)
|