Skip to content

Commit

Permalink
Merge pull request #195 from ManimCommunity/emoji-heart
Browse files Browse the repository at this point in the history
Use an emoji heart only for MacOS and Linux
  • Loading branch information
Aathish04 authored Jul 13, 2020
2 parents e5c2511 + 438e7c6 commit 8c8de97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion manim/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,9 @@ def _parse_file_writer_config(config_parser, args):

def _parse_cli(arg_list, input=True):
parser = argparse.ArgumentParser(
formatter_class=argparse.RawDescriptionHelpFormatter,
description='Animation engine for explanatory math videos',
epilog='Made with <3 by the manim community devs'
epilog=f"Made with {'<3' if os.name == 'nt' else '❤ '} by the manim community devs"
)
if input:
parser.add_argument(
Expand Down

0 comments on commit 8c8de97

Please sign in to comment.