diff options
author | Brian Dolbec <brian.dolbec@gmail.com> | 2010-07-16 14:04:24 -0700 |
---|---|---|
committer | Brian Dolbec <brian.dolbec@gmail.com> | 2010-07-16 14:04:24 -0700 |
commit | d83dbc2c40177125a15fa5423fa1bccc50c8a0f9 (patch) | |
tree | 9b36cb84676ddfdf90fb710364501daee4e84665 | |
parent | change add_repo and delete_repo to add_repos, (diff) | |
download | overlord-d83dbc2c40177125a15fa5423fa1bccc50c8a0f9.tar.gz overlord-d83dbc2c40177125a15fa5423fa1bccc50c8a0f9.tar.bz2 overlord-d83dbc2c40177125a15fa5423fa1bccc50c8a0f9.zip |
remove the extra comma that wrapped the dict in a tuple.
-rw-r--r-- | layman/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layman/api.py b/layman/api.py index c4e6a15..7784861 100644 --- a/layman/api.py +++ b/layman/api.py @@ -211,7 +211,7 @@ class LaymanAPI(object): 'status': overlay.status, 'official': overlay.is_official(), 'supported': overlay.is_supported(), - }, + } return result |