chiark / gitweb /
Restore friendly error messages
[fdroidserver.git] / fdroidserver / common.py
index 93ec35318686112577e1ce666568894c6f6c6462..c278beed203f4cb02dc78156ff67d01e8148caf8 100644 (file)
@@ -907,7 +907,7 @@ class BuildException(Exception):
         return ret
 
     def __str__(self):
-        ret = repr(self.value)
+        ret = self.value
         if self.detail:
             ret += "\n==== detail begin ====\n%s\n==== detail end ====" % self.detail.strip()
         return ret
@@ -918,7 +918,7 @@ class VCSException(Exception):
         self.value = value
 
     def __str__(self):
-        return repr(self.value)
+        return self.value
 
 
 # Get the specified source library.