mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 17:35:04 +00:00
e56303798c
Initial SickGear for Python 3.
11 lines
264 B
Python
11 lines
264 B
Python
from __future__ import unicode_literals
|
|
|
|
from js2py.internals.conversions import *
|
|
from js2py.internals.func_utils import *
|
|
|
|
|
|
class ConsoleMethods:
|
|
def log(this, args):
|
|
x = ' '.join(to_string(e) for e in args)
|
|
print(x)
|
|
return undefined
|