Line | |
---|
1 | |
---|
2 | # This checks that we can import the right versions of all dependencies. |
---|
3 | # Import this first to suppress deprecation warnings. |
---|
4 | import allmydata |
---|
5 | |
---|
6 | from decimal import Decimal |
---|
7 | from xml.dom import minidom |
---|
8 | |
---|
9 | import allmydata.web |
---|
10 | |
---|
11 | # We import these things to give PyInstaller's dependency resolver some hints |
---|
12 | # about what it needs to include. We don't use them otherwise _here_ but |
---|
13 | # other parts of the codebase do. pyflakes points out that they are unused |
---|
14 | # unless we use them. So ... use them. |
---|
15 | Decimal |
---|
16 | minidom |
---|
17 | allmydata |
---|
18 | |
---|
19 | from allmydata.scripts import runner |
---|
20 | |
---|
21 | runner.run() |
---|
Note: See
TracBrowser
for help on using the repository browser.