summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-04-10 20:11:50 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-04-10 20:11:50 +0000
commit5be72612bc09d01581d572d152dafdd64f5cfd7e (patch)
tree569b4adb875b53b26aa7166379c2b8d36a37439c /packaging
parentFix coding style issues in mirror symmetry code (diff)
parentadded info about multiple pen feature in gui (diff)
downloadinkscape-5be72612bc09d01581d572d152dafdd64f5cfd7e.tar.gz
inkscape-5be72612bc09d01581d572d152dafdd64f5cfd7e.zip
update to trunk
(bzr r13682.1.26)
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/scripts/lp-mark-bugs-released6
1 files changed, 4 insertions, 2 deletions
diff --git a/packaging/scripts/lp-mark-bugs-released b/packaging/scripts/lp-mark-bugs-released
index f18f1468a..7e936213d 100755
--- a/packaging/scripts/lp-mark-bugs-released
+++ b/packaging/scripts/lp-mark-bugs-released
@@ -21,7 +21,7 @@ import tempfile
from launchpadlib.launchpad import Launchpad
from launchpadlib.errors import HTTPError
-opt_dry_run = True
+opt_dry_run = False
def mark_released (bug):
if bug.status == 'Fix Committed':
@@ -68,7 +68,9 @@ def main():
mark_released(task)
except HTTPError, error:
- print 'An error happened in the upload:', error.content
+ print 'An error happened in the upload: %s\n%s' %(
+ error.content,
+ error.__dict__)
sys.exit(1)
if __name__ == '__main__':