diff options
author | jaseg <s@jaseg.de> | 2013-04-01 19:20:11 +0200 |
---|---|---|
committer | jaseg <s@jaseg.de> | 2013-04-01 19:21:34 +0200 |
commit | f1a6f6ef2762b63484c66375d7a671f9cfc4fbd4 (patch) | |
tree | 68445949547c37b0816c4f172e3198759f8dfbcf | |
parent | 7e85ffea332ee0b45a632dde0f8a3d8d90ca4549 (diff) | |
download | ponysay-f1a6f6ef2762b63484c66375d7a671f9cfc4fbd4.tar.gz ponysay-f1a6f6ef2762b63484c66375d7a671f9cfc4fbd4.tar.bz2 ponysay-f1a6f6ef2762b63484c66375d7a671f9cfc4fbd4.zip |
Fixed the ascii speech bubble
-rwxr-xr-x | ponysay.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ except: # (top, middle, bottom) balloonstyles= {'cowsay': (((' ', '', '< '), (' ', '', '> ')), ((' /', '|', '\\ '), (' \\', '|', '/ ')), '-', '_', '\\', '/'), 'cowsay.think': (((' ', '', '( '), (' ', '', ') ')), ((' (', '(', '( '), (' )', ')', ') ')), '-', '_', 'o', 'o'), - 'ascii': (((' /|', '', '\\ '), (' \\|', '', '/ ')), ((' /|', '|', '|\\'), (' \\|', '|', '|/')), '_', '_', 'o', 'o'), + 'ascii': (((' /|', '', '\\ '), (' \\|', '', '/ ')), ((' /|', '|', '|\\'), (' \\|', '|', '|/')), '_', '_', '\\', '/'), 'ascii.think': (((' ((', '', '( '), (' ))', '', ') ')), ((' ((', '(', '(('), (' ))', ')', '))')), '_', '_', 'o', 'o'), 'unicode': ((('┌││', '', '│└ '), ('┐││', '', '│┘ ')), (('┌││', '│', '││└'), ('┐││', '│', '││┘')), '─', '─', '╲', '╱'), 'round': ((('╭││', '', '│╰ '), ('╮││', '', '│╯ ')), (('╭││', '│', '││╰'), ('╮││', '│', '││╯')), '─', '─', '╲', '╱'), |