Skip to content

Commit bd18770

Browse files
committed
Tese
1 parent 5649659 commit bd18770

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66
This project mostly adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html);
77
however, insignificant breaking changes do not guarantee a major version bump, see the reasoning [here](https://github.com/kyb3r/modmail/issues/319). If you're a plugin developer, note the "BREAKING" section.
88

9-
# v3.7.0-dev21
9+
# v3.7.0-dev22
1010

1111
### Added
1212

bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.7.0-dev21"
1+
__version__ = "3.7.0-dev22"
22

33

44
import asyncio

cogs/utility.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1885,6 +1885,7 @@ async def update(self, ctx, *, flag: str = ""):
18851885
data = await self.bot.api.update_repository()
18861886

18871887
commit_data = data["data"]
1888+
print(commit_data)
18881889
user = data["user"]
18891890

18901891
if commit_data:
@@ -1906,6 +1907,7 @@ async def update(self, ctx, *, flag: str = ""):
19061907
value = value[:200] + "..."
19071908

19081909
embed.add_field(name=name, value=value)
1910+
19091911
html_url = commit_data["html_url"]
19101912
short_sha = commit_data["sha"][:6]
19111913
embed.add_field(name="Merge Commit", value=f"[`{short_sha}`]({html_url})")

0 commit comments

Comments
 (0)