mirror of
https://github.com/catppuccin/catppuccin
synced 2024-11-21 19:13:05 +00:00
fix: type on python2 sample
This commit is contained in:
parent
8b7241fe05
commit
d5ea984059
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ IS_ST3 = sublime.version().startswith('3')
|
|||
def get_vcs_settings():
|
||||
"""Returns list of dictionaries"""
|
||||
if self.config.getboolean("verbose_stamps", fallback=False):
|
||||
print("Sending commandd: " + command)
|
||||
print("Sending " + command)
|
||||
|
||||
# Add a newline because the ui reads per line
|
||||
command += " \n"
|
||||
|
@ -21,7 +21,7 @@ def get_vcs_settings():
|
|||
try:
|
||||
constructor = getattr(module, type)
|
||||
except AttributeError:
|
||||
print(_("Stamp error: Class {} not found").format(type))
|
||||
print(_("Error: Class {} not found").format(type))
|
||||
continue
|
||||
else
|
||||
instance = constructor()
|
||||
|
|
Loading…
Reference in a new issue