This commit is contained in:
Adam Gandelman 2013-03-01 14:33:47 -08:00
parent 72c4bec3a5
commit 1149e54b93
2 changed files with 2 additions and 2 deletions

View File

@ -220,7 +220,7 @@ def upgrade_charm():
d = os.path.join('/var/lib/rabbitmq', f)
m = 'upgrade_charm: Migrating stored passwd from %s to %s.' % (s, d)
utils.juju_log('INFO', m)
shutil.mv(s, d)
shutil.move(s, d)
hooks = {
'install': install,

View File

@ -1 +1 @@
70
71