File: ddls

package info (click to toggle)
deepdish 0.3.7-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 348 kB
  • sloc: python: 2,702; makefile: 3
file content (11 lines) | stat: -rwxr-xr-x 268 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python
from __future__ import division, print_function, absolute_import
import os
import sys

sys.path = [os.path.join(os.path.abspath(os.path.dirname(__file__)), "..")] + sys.path

from deepdish.io.ls import main

if __name__ == '__main__':
    main()