-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
package problems #6
Comments
I don't think you have the latest commit. Can you make sure you pull from master? |
did one at 00:06h CET, which fails, The most receent (~5 minutes ago) is working. Got that warnings: |
thanks a lot George(gapan). |
I'm not getting those warnings here, but I probably have an old GTK+3 version installed. What version do you get those with? I'm guessing it works OK for you despite the warnings? |
Python 3.7.5 |
-> invoking gtkman after the most recent update:
gtkman
Traceback (most recent call last):
File "/usr/local/bin/gtkman", line 13, in
import ConfigParser
ModuleNotFoundError: No module named 'ConfigParser'
--> changing import ConfigParser to import configparser:
(2/1)~$ gtkman
/usr/local/bin/gtkman:18: DeprecationWarning: Gdk.threads_init is deprecated
Gdk.threads_init()
Traceback (most recent call last):
File "/usr/local/bin/gtkman", line 48, in
class GTKMan:
File "/usr/local/bin/gtkman", line 49, in GTKMan
config = ConfigParser.RawConfigParser()
NameError: name 'ConfigParser' is not defined
--> sed'ing all occurences of ConfigParser to configparser:
(2/1)~$ gtkman
/usr/local/bin/gtkman:18: DeprecationWarning: Gdk.threads_init is deprecated
Gdk.threads_init()
Traceback (most recent call last):
File "/usr/local/bin/gtkman", line 48, in
class GTKMan:
File "/usr/local/bin/gtkman", line 49, in GTKMan
config = configparser.Rawconfigparser()
AttributeError: module 'configparser' has no attribute 'Rawconfigparser'
The text was updated successfully, but these errors were encountered: