File: python3.12-syntax.patch

package info (click to toggle)
mirtop 0.4.30-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,828 kB
  • sloc: python: 6,649; sh: 47; makefile: 22
file content (16 lines) | stat: -rw-r--r-- 668 bytes parent folder | download
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>")