diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2022-02-08 23:05:27 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2022-02-08 23:05:27 +0100 |
commit | 259399bc103f61daee068eefcd1f2d205a1c6816 (patch) | |
tree | 383ca1ad52f895c19db43fd6df841ef59c140f75 /rss_to_gitea/gitea.py | |
parent | 75556cabf2ad0fd7a136f9f8b0a9d311045c32ba (diff) | |
download | atom_to_gitea-259399bc103f61daee068eefcd1f2d205a1c6816.tar.gz |
ver 0.1.0
Diffstat (limited to 'rss_to_gitea/gitea.py')
-rw-r--r-- | rss_to_gitea/gitea.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rss_to_gitea/gitea.py b/rss_to_gitea/gitea.py index fcc985c..e1aa62a 100644 --- a/rss_to_gitea/gitea.py +++ b/rss_to_gitea/gitea.py @@ -46,7 +46,7 @@ class GiteaAPI: def createIssue(self, _owner, _repo, _title, _content, _assign, _labels): data={ 'assignee':_assign, -# 'body':_content, + 'body':_content, 'labels':_labels, 'title':_title } |