10637.3.1
by Guilherme Salgado
Use the default python version instead of a hard-coded version |
1 |
#!/usr/bin/python -S
|
10209.2.2
by Stuart Bishop
Basic page performance stats, although they are currently wrong |
2 |
#
|
3 |
# Copyright 2010 Canonical Ltd. This software is licensed under the
|
|
4 |
# GNU Affero General Public License version 3 (see the file LICENSE).
|
|
5 |
||
6 |
"""Page performance report generated from zserver tracelogs."""
|
|
7 |
||
8 |
__metaclass__ = type |
|
9 |
||
10 |
import _pythonpath |
|
11 |
||
12 |
import sys |
|
13 |
||
10209.2.4
by Stuart Bishop
Shuffle files |
14 |
from lp.scripts.utilities.pageperformancereport import main |
10209.2.2
by Stuart Bishop
Basic page performance stats, although they are currently wrong |
15 |
|
16 |
||
17 |
if __name__ == '__main__': |
|
18 |
sys.exit(main()) |