7191:960850ec284c | 7192:a22eee00b052 |
---|---|
6 """ | 6 """ |
7 Module implementing the Flash cookie manager. | 7 Module implementing the Flash cookie manager. |
8 """ | 8 """ |
9 | 9 |
10 from __future__ import unicode_literals | 10 from __future__ import unicode_literals |
11 | |
12 try: | |
13 str = unicode # __IGNORE_EXCEPTION__ | |
14 except NameError: | |
15 pass | |
16 | 11 |
17 import shutil | 12 import shutil |
18 | 13 |
19 from PyQt5.QtCore import QObject, QTimer, QDir, QFileInfo, QFile | 14 from PyQt5.QtCore import QObject, QTimer, QDir, QFileInfo, QFile |
20 | 15 |