Test Failed
Push — master ( 894e04...8e9f07 )
by Nicolas
03:42 queued 13s
created

run   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 7
dl 0
loc 9
rs 10
c 0
b 0
f 0
1
#!/usr/bin/python
2
# -*- coding: utf-8 -*-
3
import re
4
import sys
5
from glances import main
6
if __name__ == '__main__':
7
    sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
    sys.exit(main())
9