Fix list public in SQLAlchemy backend module.
[pithos] / pithos / urls.py
old mode 100755 (executable)
new mode 100644 (file)
index 7c6311c..84c80a8
@@ -1,4 +1,4 @@
-# Copyright 2011 GRNET S.A. All rights reserved.
+# Copyright 2011-2012 GRNET S.A. All rights reserved.
 # 
 # Redistribution and use in source and binary forms, with or
 # without modification, are permitted provided that the following
@@ -31,9 +31,9 @@
 # interpreted as representing official policies, either expressed
 # or implied, of GRNET S.A.
 
-from django.conf.urls.defaults import *
+from django.conf.urls.defaults import include, patterns
+
 
 urlpatterns = patterns('',
-    (r'^v1$', include('pithos.api.urls')),
-    (r'^v1/', include('pithos.api.urls'))
+    (r'', include('pithos.api.urls')),
 )