python modernize.py --no-six -f libmodernize.fixes.fix_print -w With manual fixes as the import was put always on top.
6 lines
169 B
Python
Executable file
6 lines
169 B
Python
Executable file
#!/usr/bin/env python
|
|
from __future__ import print_function
|
|
import sys
|
|
from weboob.tools.browser import StandardBrowser
|
|
|
|
print(StandardBrowser()._certhash(sys.argv[1]))
|