Skip to content

Commit 891e882

Browse files
authored
Merge pull request #22 from BolunThompson/main
Fix syntax warning
2 parents 2c06fb4 + 1608430 commit 891e882

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pash_annotations/datatypes/BasicDatatypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def format_arg_char(arg_char):
163163
if(val in non_escape_chars):
164164
return '{}'.format(chr(val))
165165
else:
166-
return '\{}'.format(chr(val))
166+
return '{}'.format(chr(val))
167167
else:
168168
# log("Cannot format arg_char:", arg_char)
169169
## TODO: Make this correct

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
## TODO: Rename the package names (and the name of the whole library)
99
##
1010
setup(name='pash-annotations',
11-
version='0.2.2',
11+
version='0.2.3',
1212
py_modules=['pash_annotations.util_flag_option',
1313
'pash_annotations.util_new',
1414
'pash_annotations.util_standard',

0 commit comments

Comments
 (0)