File: python3-html2text.prerm

package info (click to toggle)
python-html2text 3.200.3-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 184 kB
  • sloc: python: 661; sh: 60; makefile: 34
file content (22 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

set -e

case "$1" in
    remove|deconfigure)
        update-alternatives --remove html2markdown /usr/bin/html2markdown.py3
    ;;

    upgrade|failed-upgrade)
    ;;

    *)
        echo "prerm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

#DEBHELPER#

exit 0
# vi: set et: