Skip to content

Commit 9a6f047

Browse files
fix mistakes trundle pointed out
1 parent e7630ac commit 9a6f047

File tree

2 files changed

+1
-18
lines changed

2 files changed

+1
-18
lines changed

bpython/test/test_args.py

Lines changed: 0 additions & 17 deletions
This file was deleted.

bpython/test/test_curtsies_repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def setup_config(conf):
2323
config.loadini(config_struct, os.devnull)
2424
for key, value in conf.items():
2525
if not hasattr(config_struct, key):
26-
raise ValueError("%r is not a valid config attribute", (key,))
26+
raise ValueError("%r is not a valid config attribute" % (key,))
2727
setattr(config_struct, key, value)
2828
return config_struct
2929

0 commit comments

Comments
 (0)