diff --git a/Test/Control.hs b/Test/Control.hs
--- a/Test/Control.hs
+++ b/Test/Control.hs
@@ -53,11 +53,11 @@
     , TestCase (parseDebianControlFromFile "Test/Control.hs" >>= \ vc ->
                 assertEqual "policy4"
                             -- Exceptions have bogus Eq instances, so we need to show then compare.
-                            "Left \"./Debian/Control/Policy.hs\"(line 77, column 54): ParseControlError \"Test/Control.hs\" (line 0, column 0):\nFailed to parse Test/Control.hs"
+                            "Left \"src/Debian/Control/Policy.hs\"(line 77, column 54): ParseControlError \"Test/Control.hs\" (line 0, column 0):\nFailed to parse Test/Control.hs"
                             (show (either Left (either Left Right . debianRelations "Foo") vc)))
     , TestCase (parseDebianControlFromFile "nonexistant" >>= \ vc ->
                 assertEqual "policy5"
-                            "Left \"./Debian/Control/Policy.hs\"(line 76, column 36): IOError nonexistant: openBinaryFile: does not exist (No such file or directory)"
+                            "Left \"src/Debian/Control/Policy.hs\"(line 76, column 36): IOError nonexistant: openBinaryFile: does not exist (No such file or directory)"
                             (replaceString "openFile" "openBinaryFile"
                              (show (either Left (debianRelations "Foo") (vc :: Either ControlFileError DebianControl)))))
 
diff --git a/debian.cabal b/debian.cabal
--- a/debian.cabal
+++ b/debian.cabal
@@ -1,11 +1,11 @@
 Name:           debian
-Version:        3.95
+Version:        3.95.1
 License:        BSD3
 License-File:   debian/copyright
 Author:         David Fox <dsf@seereason.com>, Jeremy Shaw <jeremy@seereason.com>, Clifford Beshers <beshers@seereason.com>
 Category:       Debian
-Maintainer:     David Fox <dsf@seereason.com>
-Homepage:       https://github.com/ddssff/debian-haskell
+Maintainer:     Clint Adams <clint@debian.org>
+Homepage:       https://github.com/clinty/debian-haskell
 Build-Type:     Simple
 Synopsis:       Modules for working with the Debian package system
 Cabal-Version: >= 1.9
@@ -20,11 +20,6 @@
  Description: Get Network.URI from the network-uri package
  Default: True
 
-flag pretty-new
- Description: pretty-1.1.2 includes the Text.PrettyPrint.HughesPJClass module from prettyclass
- Default: True
- Manual: True
-
 Library
  Hs-Source-Dirs: src
  Build-Depends:
@@ -45,6 +40,7 @@
    mtl,
    old-locale,
    parsec >= 2 && <4,
+   pretty >= 1.1.2,
    process,
    process-extras >= 0.2.0,
    pureMD5,
@@ -66,10 +62,6 @@
    Build-Depends: network-uri >= 2.6
  else
    Build-Depends: network >= 2.4 && < 2.6
- if flag(pretty-new)
-   Build-Depends: pretty >= 1.1.2
- else
-   Build-Depends: pretty, prettyclass
 
  ghc-options: -Wall
  Exposed-modules:
@@ -144,13 +136,9 @@
   Type: exitcode-stdio-1.0
   Hs-Source-Dirs: Test
   Main-Is: Main.hs
- Build-Depends: base, Cabal, debian, HUnit, parsec, regex-tdfa, text
+ Build-Depends: base, Cabal, debian, HUnit, parsec, pretty >= 1.1.2, regex-tdfa, text
  Other-Modules: Changes Control Dependencies Paths_debian Versions
- if flag(pretty-new)
-   Build-Depends: pretty >= 1.1.2
- else
-   Build-Depends: pretty, prettyclass
 
 source-repository head
   type:     git
-  location: https://github.com/ddssff/debian-haskell
+  location: https://github.com/clinty/debian-haskell
diff --git a/debian/copyright b/debian/copyright
--- a/debian/copyright
+++ b/debian/copyright
@@ -8,6 +8,7 @@
 
 Copyright (c) 2007, David Fox
 Copyright (c) 2007, Jeremy Shaw
+Copyright 2019 Clint Adams
 
 All rights reserved.
 
