17 import winreg |
17 import winreg |
18 except ImportError: |
18 except ImportError: |
19 print("This script is to be used on Windows platforms only. Aborting...") |
19 print("This script is to be used on Windows platforms only. Aborting...") |
20 sys.exit(1) |
20 sys.exit(1) |
21 |
21 |
22 from eric7.Globals import getConfig |
22 try: |
|
23 from eric7.eric7config import getConfig |
|
24 except ImportError: |
|
25 from eric7config import getConfig |
23 |
26 |
24 |
27 |
25 def main(): |
28 def main(): |
26 """ |
29 """ |
27 Create Desktop and Start Menu links. |
30 Create Desktop and Start Menu links. |