when freeze nightly version not set correctly

Bug #1275168 reported by Simon ANDRÉ
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
OpenERP buildout recipe
Fix Released
Medium
Simon ANDRÉ

Bug Description

When we use nightly version with "latest" option, and let's recipe freeze version, output is:

version = 7.0 nightly 20140201-002756

My opinion is It's an error because type of version must be in first like this

version = nightly 7.0 20140201-002756

my version of recipe is 1.8.1

Revision history for this message
Simon ANDRÉ (sandre) wrote :

After inspecting code

vim anybox/recipe/openerp/base.py +760::

    def dump_nightly_latest_version(self):
        """After download/analysis of 'nightly latest', give equivalent spec.
        """
        return ' '.join((self.nightly_series, 'nightly', self.nightly_version))

must be ::

    def dump_nightly_latest_version(self):
        """After download/analysis of 'nightly latest', give equivalent spec.
        """
        return ' '.join(('nightly', self.nightly_series, self.nightly_version))

Revision history for this message
Simon ANDRÉ (sandre) wrote :
Changed in anybox.recipe.openerp:
assignee: nobody → Simon ANDRÉ (sandre)
importance: Undecided → Medium
milestone: none → 1.8.2
status: New → Fix Committed
Changed in anybox.recipe.openerp:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.