Skip to content

Commit

Permalink
Merge pull request #195 from cs50/develop
Browse files Browse the repository at this point in the history
v3.0.10
  • Loading branch information
Kareem Zidane authored Jan 7, 2020
2 parents 0dc8bbb + e20e0f4 commit b01fc00
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion check50/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def __call__(self, parser, namespace, values, option_string=None):
except lib50.Error:
raise internal.Error(_("failed to logout"))
else:
termcolor.termcolor.cprint(_("logged out successfully"), "green")
termcolor.cprint(_("logged out successfully"), "green")
parser.exit()


Expand Down
2 changes: 1 addition & 1 deletion check50/_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def _raw(s):
if s == EOF:
return "EOF"

s = f'"{repr(s)[1:-1]}"'
s = f'"{repr(str(s))[1:-1]}"'
if len(s) > 15:
s = s[:15] + "...\"" # Truncate if too long
return s
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
"console_scripts": ["check50=check50.__main__:main"]
},
url="https://github.com/cs50/check50",
version="3.0.9",
version="3.0.10",
include_package_data=True
)

0 comments on commit b01fc00

Please sign in to comment.