Fixed webapp.get_name()

This commit is contained in:
Marc Aymerich 2014-11-09 10:25:02 +00:00
parent 67ad2cf6b5
commit 29eae450dc
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class WebApp(models.Model):
def get_path(self):
context = {
'home': self.get_user().get_home(),
'app_name': self.name,
'app_name': self.get_name(),
}
return settings.WEBAPPS_BASE_ROOT % context