'Issue with Pystray
I am working on a small system-tray app in which I am able to change screen resolution and such. For the system-tray I am using Pystray and everything was working flawlessly but suddenly I just got an error "TypeError: Menu.init() takes from 1 to 3 positional arguments but 7 were given" in this pasrt of my code:
menu =
Item('Resolution', Menu(
Item('2560x1440', lambda Item: resolution(Item, 2560, 1440) ),
Item('1920x1080', lambda Item: resolution(Item, 1920, 1080) ),
Item('1280x1024', lambda Item: resolution(Item, 1280, 1024) ),
Item('1280x720', lambda Item: resolution(Item, 1280, 720) ),
Item('800x600', lambda Item: resolution(Item, 800, 600 ) ),
Item('1280x1280', lambda Item: resolution(Item, 1280, 1280) )
)
),
[...]
and when I remove a few of the submenus I get yet another error "AttributeError: 'MenuItem' object has no attribute 'tk'". I also dont recall having changed much in my code if anything.
Errors: https://pastebin.com/019kiMeT Code: https://pastebin.com/cqknxjZu
Solution 1:[1]
I had to modify php configuration through a php.ini file. By default, this setting was turned off on my new server.
zlib.output_compression = On
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Sean |