Skip to content

Commit fb9d2cc

Browse files
committed
egsim-db command bugfix
1 parent 22387f2 commit fb9d2cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

egsim/api/management/commands/egsim-db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def parse_field_and_value(self, db_model: Model, input_result, *,
8282
try:
8383
resp = shlex.split(resp)
8484
except ValueError as sh_err:
85-
self.stdout.write(self.style.ERROR(str(sh_err))
85+
self.stdout.write(self.style.ERROR(str(sh_err)))
8686
return None, None, input_result
8787

8888
if len(resp) != 2:

0 commit comments

Comments
 (0)