summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/swift.php
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-02-12 11:05:12 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2013-02-12 11:05:12 +0100
commit6b594c1eb84dccb57c5050f9d686734c98cc6d39 (patch)
treee0372c641a03bdcfb5691dc8e274c6cdcffb66af /apps/files_external/lib/swift.php
parenta953786d7952f2d758a8111302822708d906875e (diff)
downloadnextcloud-server-6b594c1eb84dccb57c5050f9d686734c98cc6d39.tar.gz
nextcloud-server-6b594c1eb84dccb57c5050f9d686734c98cc6d39.zip
fixing namespace
Diffstat (limited to 'apps/files_external/lib/swift.php')
-rw-r--r--apps/files_external/lib/swift.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php
index bab49524746..20af67cb8b6 100644
--- a/apps/files_external/lib/swift.php
+++ b/apps/files_external/lib/swift.php
@@ -264,7 +264,7 @@ class SWIFT extends \OC\Files\Storage\Common{
private function getSubContainerFile($container) {
try {
return $container->get_object(self::SUBCONTAINER_FILE);
- } catch(NoSuchObjectException $e) {
+ } catch(\NoSuchObjectException $e) {
return $container->create_object(self::SUBCONTAINER_FILE);
}
}