File: python3-future.postinst

package info (click to toggle)
python-future 0.18.2-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,264 kB
  • sloc: python: 43,246; makefile: 136; sh: 29
file content (12 lines) | stat: -rw-r--r-- 258 bytes parent folder | download | duplicates (3)
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 300
	update-alternatives --install /usr/bin/pasteurize pasteurize /usr/bin/python3-pasteurize 300
fi

#DEBHELPER#

exit 0