Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Jelle van der Waa
Archweb
Commits
203506c9
Unverified
Commit
203506c9
authored
Jul 30, 2018
by
Aleksandar Trifunovic
Browse files
remove unecessary list calls
parent
adaa6d64
Changes
5
Hide whitespace changes
Inline
Side-by-side
devel/management/commands/pgp_import.py
View file @
203506c9
...
...
@@ -141,7 +141,7 @@ def import_keys(keyring):
finder
=
UserFinder
()
# we are dependent on parents coming before children; parse_keydata
# uses an OrderedDict to ensure this is the case.
for
data
in
list
(
keydata
.
values
()
)
:
for
data
in
keydata
.
values
():
parent_id
=
None
if
data
.
parent
:
parent_data
=
keydata
.
get
(
data
.
parent
,
None
)
...
...
@@ -161,7 +161,7 @@ def import_keys(keyring):
if
created
:
created_ct
+=
1
else
:
for
k
,
v
in
list
(
other
.
items
()
)
:
for
k
,
v
in
other
.
items
():
if
getattr
(
dkey
,
k
)
!=
v
:
setattr
(
dkey
,
k
,
v
)
needs_save
=
True
...
...
devel/management/commands/rematch_developers.py
View file @
203506c9
...
...
@@ -62,7 +62,7 @@ def match_packager(finder):
logger
.
debug
(
" found user %s"
,
user
.
username
)
matched_count
+=
1
for
packager_str
,
user
in
list
(
mapping
.
items
()
)
:
for
packager_str
,
user
in
mapping
.
items
():
package_count
+=
Package
.
objects
.
filter
(
packager__isnull
=
True
,
packager_str
=
packager_str
).
update
(
packager
=
user
)
...
...
@@ -88,7 +88,7 @@ def match_flagrequest(finder):
logger
.
debug
(
" found user %s"
,
user
.
username
)
matched_count
+=
1
for
user_email
,
user
in
list
(
mapping
.
items
()
)
:
for
user_email
,
user
in
mapping
.
items
():
req_count
+=
FlagRequest
.
objects
.
filter
(
user__isnull
=
True
,
user_email
=
user_email
).
update
(
user
=
user
)
...
...
devel/management/commands/reporead_inotify.py
View file @
203506c9
...
...
@@ -187,7 +187,7 @@ def my_init(self, **kwargs):
# we really want a single path to arch mapping, so massage the data
arch_paths
=
kwargs
[
'arch_paths'
]
for
arch
,
paths
in
list
(
arch_paths
.
items
()
)
:
for
arch
,
paths
in
arch_paths
.
items
():
self
.
arch_lookup
.
update
((
path
.
rstrip
(
'/'
),
arch
)
for
path
in
paths
)
def
process_default
(
self
,
event
):
...
...
main/templatetags/details_link.py
View file @
203506c9
...
...
@@ -8,7 +8,7 @@
def
link_encode
(
url
,
query
):
# massage the data into all utf-8 encoded strings first, so urlencode
# doesn't barf at the data we pass it
query
=
{
k
:
str
(
v
).
encode
(
'utf-8'
)
for
k
,
v
in
list
(
query
.
items
()
)
}
query
=
{
k
:
str
(
v
).
encode
(
'utf-8'
)
for
k
,
v
in
query
.
items
()}
data
=
urlencode
(
query
)
return
"%s?%s"
%
(
url
,
data
)
...
...
public/utils.py
View file @
203506c9
...
...
@@ -48,7 +48,7 @@ def package_links(self):
by_arch
=
defaultdict
(
list
)
for
package
in
self
.
others
:
by_arch
[
package
.
arch
].
append
(
package
)
for
_
,
packages
in
list
(
by_arch
.
items
()
)
:
for
_
,
packages
in
by_arch
.
items
():
if
len
(
packages
)
==
1
:
yield
packages
[
0
]
else
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment