[Bug 1948723] Re: /usr/lib/python3/dist-packages/Onboard/LayoutLoaderSVG.py:447: SyntaxWarning: 'str' object is not callable; perhaps you missed a comma? raise Exceptions.LayoutFileError("Unrecognized

2022-03-15 Thread Leo Chen
Got same error when install Unity on Ubuntu Server 20.04 LTS 32-bit for
Raspberry Pi.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948723

Title:
  /usr/lib/python3/dist-packages/Onboard/LayoutLoaderSVG.py:447:
  SyntaxWarning: 'str' object is not callable; perhaps you missed a
  comma?   raise Exceptions.LayoutFileError("Unrecognized modifier %s
  in" \

To manage notifications about this bug go to:
https://bugs.launchpad.net/onboard/+bug/1948723/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948723] Re: /usr/lib/python3/dist-packages/Onboard/LayoutLoaderSVG.py:447: SyntaxWarning: 'str' object is not callable; perhaps you missed a comma? raise Exceptions.LayoutFileError("Unrecognized

2022-01-27 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: onboard (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948723

Title:
  /usr/lib/python3/dist-packages/Onboard/LayoutLoaderSVG.py:447:
  SyntaxWarning: 'str' object is not callable; perhaps you missed a
  comma?   raise Exceptions.LayoutFileError("Unrecognized modifier %s
  in" \

To manage notifications about this bug go to:
https://bugs.launchpad.net/onboard/+bug/1948723/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948723] Re: /usr/lib/python3/dist-packages/Onboard/LayoutLoaderSVG.py:447: SyntaxWarning: 'str' object is not callable; perhaps you missed a comma? raise Exceptions.LayoutFileError("Unrecognized

2021-12-20 Thread Norbert
Please attach patch as file and add "patch" tag.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948723

Title:
  /usr/lib/python3/dist-packages/Onboard/LayoutLoaderSVG.py:447:
  SyntaxWarning: 'str' object is not callable; perhaps you missed a
  comma?   raise Exceptions.LayoutFileError("Unrecognized modifier %s
  in" \

To manage notifications about this bug go to:
https://bugs.launchpad.net/onboard/+bug/1948723/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948723] Re: /usr/lib/python3/dist-packages/Onboard/LayoutLoaderSVG.py:447: SyntaxWarning: 'str' object is not callable; perhaps you missed a comma? raise Exceptions.LayoutFileError("Unrecognized

2021-12-20 Thread Jason
I believe that the patch below will fix the issue:

--- /usr/lib/python3/dist-packages/Onboard/LayoutLoaderSVG.py.orig  
2021-12-20 22:34:49.184112471 -0500
+++ /usr/lib/python3/dist-packages/Onboard/LayoutLoaderSVG.py   2021-12-20 
22:33:33.374611161 -0500
@@ -445,7 +445,7 @@
 except KeyError as ex:
 (strerror) = ex
 raise Exceptions.LayoutFileError("Unrecognized modifier %s in" 
\
-"definition of %s" (strerror, full_id))
+"definition of %s".format(strerror, full_id))

 value = attributes.get("action")
 if value:

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948723

Title:
  /usr/lib/python3/dist-packages/Onboard/LayoutLoaderSVG.py:447:
  SyntaxWarning: 'str' object is not callable; perhaps you missed a
  comma?   raise Exceptions.LayoutFileError("Unrecognized modifier %s
  in" \

To manage notifications about this bug go to:
https://bugs.launchpad.net/onboard/+bug/1948723/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs