eric5_tray.py

branch
Py2 comp.
changeset 2526
a91cba8291b9
parent 2525
8b507a9a2d40
child 2538
b2642e7a4c18
equal deleted inserted replaced
2525:8b507a9a2d40 2526:a91cba8291b9
11 of the system-tray application. This acts as a quickstarter by providing a 11 of the system-tray application. This acts as a quickstarter by providing a
12 context menu to start the eric5 IDE and the eric5 tools. 12 context menu to start the eric5 IDE and the eric5 tools.
13 """ 13 """
14 14
15 from __future__ import unicode_literals # __IGNORE_WARNING__ 15 from __future__ import unicode_literals # __IGNORE_WARNING__
16 try: # Only for Py2
17 import sip
18 sip.setapi('QString', 2)
19 sip.setapi('QVariant', 2)
20 import Utilities.compatibility_fixes # __IGNORE_WARNING__
21 except (ImportError):
22 pass
16 23
17 import sys 24 import sys
18 25
19 for arg in sys.argv: 26 for arg in sys.argv:
20 if arg.startswith("--config="): 27 if arg.startswith("--config="):

eric ide

mercurial