9 lines
131 B
Python
Executable File
9 lines
131 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from sys import argv
|
|
from gst_indent_common import indent
|
|
|
|
|
|
if __name__ == '__main__':
|
|
indent(argv[1:])
|