[infinispan-issues] [JBoss JIRA] (ISPN-2733) Issue with the release script (bin/release.py)

Tristan Tarrant (JIRA) jira-events at lists.jboss.org
Wed Jan 23 08:34:47 EST 2013


     [ https://issues.jboss.org/browse/ISPN-2733?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tristan Tarrant updated ISPN-2733:
----------------------------------

              Status: Pull Request Sent  (was: Open)
    Git Pull Request: https://github.com/infinispan/infinispan/pull/1590

    
> Issue with the release script (bin/release.py)
> ----------------------------------------------
>
>                 Key: ISPN-2733
>                 URL: https://issues.jboss.org/browse/ISPN-2733
>             Project: Infinispan
>          Issue Type: Bug
>    Affects Versions: 5.2.0.CR1
>            Reporter: Mircea Markus
>            Assignee: Tristan Tarrant
>            Priority: Critical
>             Fix For: 5.2.0.Final
>
>
> I get the following exception when running the release script:
> {quote}
> [INFO] Step 6: Uploading Artifacts
> Traceback (most recent call last):
>   File "./bin/release.py", line 367, in <module>
>     release()
>   File "./bin/release.py", line 332, in release
>     do_task(upload_artifacts, [base_dir % "as-modules", version], async_processes)
> TypeError: not all arguments converted during string formatting
> {quote}
> Seems like there's an incorrect string concatenation at line 332:
> {code}
>   do_task(upload_artifacts, [base_dir % "as-modules", version], async_processes)
> {code}
> Using string concatenation seems to solve the problem:
> {code}
> do_task(upload_artifacts, [base_dir + "/as-modules", version], async_processes)
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the infinispan-issues mailing list