Mercurial > libervia-desktop-kivy
comparison cagou/__init__.py @ 312:772c170b47a9
Python3 port:
/!\ Cagou now runs with Python 3.6+
Port has been done in the same way as for backend (check backend commit b2d067339de3
message for details).
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 13 Aug 2019 19:14:22 +0200 |
parents | 1b835bcfa663 |
children | 89799148f894 |
comparison
equal
deleted
inserted
replaced
311:a0d978d3ce84 | 312:772c170b47a9 |
---|---|
29 def host(self): | 29 def host(self): |
30 return self._host | 30 return self._host |
31 G = Global() | 31 G = Global() |
32 | 32 |
33 # this import must be done after G is created | 33 # this import must be done after G is created |
34 from core import cagou_main | 34 from .core import cagou_main |
35 | 35 |
36 def run(): | 36 def run(): |
37 host = G._host = cagou_main.Cagou() | 37 host = G._host = cagou_main.Cagou() |
38 host.run() | 38 host.run() |