Skip to content

Commit

Permalink
bug fix: display version
Browse files Browse the repository at this point in the history
  • Loading branch information
usmannasir committed Jan 7, 2020
1 parent 0610f8f commit 3543aaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion baseTemplate/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def versionManagment(request):
currentBuild = data[1]
except:
currentVersion = latestVersion
currentBuild = latestBuild + 'E'
currentBuild = str(latestBuild) + 'E'

return render(request, 'baseTemplate/versionManagment.html', {'build': currentBuild,
'currentVersion': currentVersion,
Expand Down

0 comments on commit 3543aaa

Please sign in to comment.