comparison: UI/BrowserModel.py
UI/BrowserModel.py
- branch
- Py2 comp.
- changeset 3506
- d85fadb263a0
- parent 3484
- 645c12de6b0c
- child 3525
- 66f4b8646622
equal
deleted
inserted
replaced
6 """ |
6 """ |
7 Module implementing the browser model. |
7 Module implementing the browser model. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
|
11 try: |
|
12 str = unicode |
|
13 except NameError: |
|
14 pass |
11 |
15 |
12 import os |
16 import os |
13 import fnmatch |
17 import fnmatch |
14 import json |
18 import json |
15 |
19 |