Compare commits

..

No commits in common. "7ba58d0b63a3525c48e5c11f3994d15b5a8184fb" and "032b843bac2798ab837b27fae16828e4ba5d8e29" have entirely different histories.

3 changed files with 10 additions and 12 deletions

View file

@ -29,14 +29,18 @@ RUN_RELOADER = True
NOTIFIER = None NOTIFIER = None
def get_version(): def get_version():
info = join(dirname(dirname(dirname(__file__))), '.bzr', 'branch', 'last-revision')
git_dir = join(dirname(dirname(dirname(__file__))), '.git') git_dir = join(dirname(dirname(dirname(__file__))), '.git')
if exists(git_dir): if exists(git_dir):
env = {'GIT_DIR': git_dir} env = {'GIT_DIR': git_dir}
cmd = ['git', 'rev-list', 'HEAD', '--count'] cmd = ['git', 'rev-list', 'HEAD', '--count']
version = subprocess.check_output(cmd, env=env).strip().decode('utf-8') return subprocess.check_output(cmd, env=env).strip().decode('utf-8')
if settings.VERSION_EPOCH: elif exists(info):
version = settings.VERSION_EPOCH + version f = open(info)
return version rev = int(f.read().split()[0])
f.close()
if rev:
return u'%s' % rev
else: else:
return u'unknown' return u'unknown'

View file

@ -814,12 +814,8 @@ class Stream(models.Model):
# file could have been moved while encoding # file could have been moved while encoding
# get current version from db and update # get current version from db and update
try: self.refresh_from_db()
self.refresh_from_db() self.update_status(ok, error)
except archive.models.DoesNotExist:
pass
else:
self.update_status(ok, error)
def get_index(self): def get_index(self):
index = 1 index = 1

View file

@ -36,8 +36,6 @@ LANGUAGE_CODE = 'en-us'
SITE_ID = 1 SITE_ID = 1
VERSION_EPOCH = None
# If you set this to False, Django will make some optimizations so as not # If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery. # to load the internationalization machinery.
USE_I18N = True USE_I18N = True