mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-21 06:45:24 -06:00
fix: python3 compatibility
This commit is contained in:
parent
77899147f0
commit
e7e83c9510
1 changed files with 2 additions and 2 deletions
|
|
@ -38,8 +38,8 @@ app.controller('UserCtrl', function($timeout, $scope, $http, $scrollspy) {
|
|||
|
||||
// Available languages
|
||||
$scope.languages = [
|
||||
{% for key, val in config['LANGUAGES'].iteritems() %}
|
||||
{ 'name': '{{ val.decode("utf-8") }}', 'id': '{{ key }}' },
|
||||
{% for key, val in config['LANGUAGES'].items() %}
|
||||
{ 'name': '{{ val }}', 'id': '{{ key }}' },
|
||||
{% endfor %}
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue