Skip to content

Commit

Permalink
applet: fix repl format conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
attie-argentum authored and whitequark committed Oct 24, 2020
1 parent b769470 commit 7c4cb21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion software/glasgow/applet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class GlasgowAppletMeta(ABCMeta):
def __new__(metacls, clsname, bases, namespace, name=None, **kwargs):
if name is not None:
if name in metacls.all_applets:
raise NameError(f"Applet {name:r} already exists")
raise NameError(f"Applet {name!r} already exists")
namespace["name"] = name

# Any class that overrides interact() no longer has its superclass' custom REPL, so be
Expand Down

0 comments on commit 7c4cb21

Please sign in to comment.