juju / amulet

Testing harness and tools for Juju Charms
Other
17 stars 33 forks source link

Remove deprecated warning from path.py #158

Closed mbruzek closed 8 years ago

mbruzek commented 8 years ago

There are deprecated imports of path.py left in amulet code that generate the following warning:

/usr/lib/python3/dist-packages/path.py:1719: DeprecationWarning: path is deprecated. Use Path instead.
  warnings.warn(msg, DeprecationWarning)

The class is "Path" and the lower case is only kept for backward compatibility. We can make this better by importing the Path class differently.