← Back to team overview

yahoo-eng-team team mailing list archive

[Bug 1304253] [NEW] Horizon requires pbr at runtime

 

Public bug reported:

The only occurance of pbr is:
grep -r 'pbr' *

version.py:import pbr.version
version.py:version_info = pbr.version.VersionInfo('horizon')


That can be replaced by something like this:
class VersionInfo(object):
    release = "2014.1"
    version = "1"

    def version_string(self):
        return self.version

    def release_string(self):
        return self.release

version_info = VersionInfo()

** Affects: horizon
     Importance: Undecided
         Status: New


** Tags: low-hanging-fruit

** Tags added: low-hanging-fruit

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1304253

Title:
  Horizon requires pbr at runtime

Status in OpenStack Dashboard (Horizon):
  New

Bug description:
  The only occurance of pbr is:
  grep -r 'pbr' *

  version.py:import pbr.version
  version.py:version_info = pbr.version.VersionInfo('horizon')


  That can be replaced by something like this:
  class VersionInfo(object):
      release = "2014.1"
      version = "1"

      def version_string(self):
          return self.version

      def release_string(self):
          return self.release

  version_info = VersionInfo()

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1304253/+subscriptions


Follow ups

References