File: python3-future.postinst

package info (click to toggle)
python-future 0.15.2-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,420 kB
  • ctags: 6,337
  • sloc: python: 42,496; makefile: 141; sh: 45
file content (12 lines) | stat: -rw-r--r-- 258 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "configure" ] ; then
	update-alternatives --install /usr/bin/futurize futurize /usr/bin/python3-futurize 200
	update-alternatives --install /usr/bin/pasteurize pasteurize /usr/bin/python3-pasteurize 200
fi

#DEBHELPER#

exit 0