File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ v0.2.1 (in development)
2
+ -----------------------
3
+ - Remove some Python 3.6 syntax that snuck in
4
+
1
5
v0.2.0 (2020-07-24)
2
6
-------------------
3
7
- [ #1 ] Added an ` --ansi ` option for outputting raw escape sequences without
Original file line number Diff line number Diff line change 57
57
by running ``PS1_GIT=off`` on the command line.
58
58
"""
59
59
60
- __version__ = '0.2.0 '
60
+ __version__ = '0.2.1.dev1 '
61
61
__author__ = 'John T. Wodder II'
62
62
__author_email__ = 'ps1@varonathe.org'
63
63
__license__ = 'MIT'
@@ -199,7 +199,7 @@ def escape(self, s):
199
199
def main ():
200
200
parser = argparse .ArgumentParser (
201
201
description = 'Yet another bash/zsh prompt script. '
202
- f 'Visit <{ __url__ } > for more information.'
202
+ 'Visit <{}> for more information.' . format ( __url__ )
203
203
)
204
204
parser .add_argument (
205
205
'--ansi' ,
@@ -230,7 +230,7 @@ def main():
230
230
parser .add_argument (
231
231
'-V' , '--version' ,
232
232
action = 'version' ,
233
- version = f '%(prog)s { __version__ } ' ,
233
+ version = '%(prog)s {}' . format ( __version__ ) ,
234
234
)
235
235
parser .add_argument (
236
236
'git_flag' ,
You can’t perform that action at this time.
0 commit comments