mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
11 lines
114 B
Python
11 lines
114 B
Python
|
from ..base import *
|
||
|
|
||
|
@Js
|
||
|
def console():
|
||
|
pass
|
||
|
|
||
|
@Js
|
||
|
def log():
|
||
|
print(arguments[0])
|
||
|
|
||
|
console.put('log', log)
|