Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Duplicati/License/LicenseReader.cs')
-rw-r--r--Duplicati/License/LicenseReader.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Duplicati/License/LicenseReader.cs b/Duplicati/License/LicenseReader.cs
index ebc48fe13..2cfffe7ce 100644
--- a/Duplicati/License/LicenseReader.cs
+++ b/Duplicati/License/LicenseReader.cs
@@ -1,4 +1,4 @@
-#region Disclaimer / License
+#region Disclaimer / License
// Copyright (C) 2015, The Duplicati Team
// http://www.duplicati.com, info@duplicati.com
//
@@ -20,7 +20,7 @@
using System;
using System.Collections.Generic;
using System.Text;
-using Duplicati.Library.IO;
+using Duplicati.Library.Common.IO;
using Duplicati.Library.Utility;
namespace Duplicati.License
@@ -52,7 +52,7 @@ namespace Duplicati.License
{
List<LicenseEntry> res = new List<LicenseEntry>();
- string[] folders = SystemIO.IO_OS(Utility.IsClientWindows).GetDirectories(basefolder);
+ string[] folders = SystemIO.IO_OS.GetDirectories(basefolder);
Array.Sort(folders);
foreach (string folder in folders)