mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-27 09:58:10 +01:00
Fixed TypeError
This commit is contained in:
parent
5268d373fb
commit
b8f544b44f
2 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
Fixed:
|
||||
- Case-sensitive with commands find and search
|
||||
- For combination options with --repository= and --directory=
|
||||
- TypeError for repo-info command #171
|
||||
|
||||
4.8.4 - 14/05/2023
|
||||
Added:
|
||||
|
|
|
@ -62,7 +62,7 @@ class RepoInfo(Configs):
|
|||
LastRepoUpdated.date).where(
|
||||
LastRepoUpdated.repo == repository).first()
|
||||
|
||||
if date[0] is None:
|
||||
if date is None:
|
||||
date: tuple = ('',)
|
||||
|
||||
return date[0]
|
||||
|
|
Loading…
Reference in a new issue