Skip to content

Commit

Permalink
Fixed a mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
lrustand committed Jul 28, 2019
1 parent b39f540 commit 4364666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/views/flag.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def flag(request, name, repo, arch):
form = FlagForm(request.POST, authenticated=authenticated)
if form.is_valid() and form.cleaned_data['website'] == '':
# save the package list for later use
flagged_pkgs = list(pkgs) + list(lib32_pkgs)
flagged_pkgs = list(pkgs)

# find a common version if there is one available to store
versions = set((pkg.pkgver, pkg.pkgrel, pkg.epoch)
Expand Down

0 comments on commit 4364666

Please sign in to comment.