1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Fix Python3.12 string syntax
Bug-Debian: https://bugs.debian.org/1085726
Author: Andreas Tille <tille@debian.org>
Last-Update: 2024-06-08
--- a/mirtop/sql/sql.py
+++ b/mirtop/sql/sql.py
@@ -475,7 +475,7 @@ def sql_options(args):
if args.gff:
insert_sql(args)
else:
- print("Usage: mirtop sql --create --gff <input.gff> --db <new_db_name> \(Default: mirtop.db\)")
+ print("Usage: mirtop sql --create --gff <input.gff> --db <new_db_name> (Default: mirtop.db)")
elif args.query:
if args.expr:
# print("Usage: mirtop sql --query --db <input_database> -e <user_query>")
|