AppScale / appscale-agents

AppScale Cloud Agents
Other
0 stars 7 forks source link

Old appscale_tools namespace login in agents setup.py #16

Open scragraham opened 5 years ago

scragraham commented 5 years ago

At the top of the setup.py script there is some legacy code related to appscale_tools. I don't believe this will cause any issues, but we should clean up the code and remove this block.

# Require users to uninstall versions that used the appscale namespace.
try:
  import appscale.appscale_tools
  print('Please run "pip uninstall appscale-tools" first.\n'
        "Your installed version conflicts with this version's namespace.")
  sys.exit()
except ImportError:
  pass