Changes needed for Python 3.7
Bug #1817515 reported by
Robert Tari
This bug affects 5 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
my-weather-indicator |
New
|
Undecided
|
Unassigned |
Bug Description
Starting from Python 3.7 "async" is a reserved word, so the async.py module will not import. Here is what needs to change:
1. async.py:
rename async.py to myasync.py
2. whereami.py:33
"from async import async_function" --> "from myasync import async_function"
3. debian/md5sums:54
f0cd9a66d9ce388
To post a comment you must log in.
Since ubuntu disco dingo (19.04) is released, and disco dingo is delievered with python 3.7, my-weather- indicator does not work any longer. Looking in the crash file definitively proves that the problem is the one described above.