Skip to content

Commit cc875bd

Browse files
committed
[fix] boken api
1 parent 6f6c9c6 commit cc875bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pypi_server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
("Dmitry Orlov", "me@mosquito.su")
1010
]
1111

12-
version_info = (0, 4, 3)
12+
version_info = (0, 4, 4)
1313

1414
__version__ = ".".join(map(str, version_info))
1515
__author__ = ", ".join("{0} <{1}>".format(*author) for author in author_info)

pypi_server/handlers/api/packages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get(self):
1616
q = Package.select(
1717
Package.name,
1818
Package.is_proxy,
19-
Package.owner.login,
19+
Package.owner,
2020
Users.login,
2121
).join(
2222
Users, peewee.JOIN.LEFT_OUTER

0 commit comments

Comments
 (0)