diff --git a/Hascal.hs b/Hascal.hs
--- a/Hascal.hs
+++ b/Hascal.hs
@@ -170,5 +170,6 @@
 -- E.g., it doesn't show the real or imaginary part of the number if it's @0@.
 prettyPrint :: (Show t, RealFloat t) => Complex t -> String
 prettyPrint (r:+0) = show r
+prettyPrint (r:+1) = prettyPrint (r:+0) ++ " + i"
 prettyPrint (0:+i) = show i ++ "*i"
 prettyPrint (r:+i) = show r ++ " + " ++ show i ++ "*i"
diff --git a/hascal.cabal b/hascal.cabal
--- a/hascal.cabal
+++ b/hascal.cabal
@@ -1,5 +1,5 @@
 name:          hascal
-version:       2.0.0
+version:       2.0.0.1
 synopsis:      A minimalistic but extensible and precise calculator
 description:   Hascal is both a simple but extendable calculator library for
                Haskell as well as a command-line program using this library.
@@ -27,12 +27,7 @@
 
 source-repository head
   type:     darcs
-  location: http://darcsden.com/mekeor/hascal
-
-
-source-repository head
-  type:     git
-  location: git://github.com/mekeor/hascal.git
+  location: http://hub.darcs.net/mekeor/hascal
 
 
 test-suite test
