File: debug_run.py

package info (click to toggle)
bookletimposer 0.3.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,816 kB
  • sloc: python: 1,282; sh: 84; makefile: 13; xml: 12
file content (14 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/python3

# XXX gruge de dev

import sys

sys.path = ["../pyPdf"] + sys.path
print "DEBUG added custom pyPdf dir in path, which is now ", sys.path

sys.path = ["src/bookletbinder/"] + sys.path

import bookletbinder

bookletbinder.main()