summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-12-18 07:43:37 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-12-18 07:43:37 -0800
commit28c927de95d274cb54b10dea7d005c19963b3209 (patch)
tree87608f25387ed4e4ecb374e7217ec2f160d9f970 /src
parent9a6b0bdd2224f9754d2afad0dca303c3e89b9406 (diff)
downloadDotNetOpenAuth-28c927de95d274cb54b10dea7d005c19963b3209.zip
DotNetOpenAuth-28c927de95d274cb54b10dea7d005c19963b3209.tar.gz
DotNetOpenAuth-28c927de95d274cb54b10dea7d005c19963b3209.tar.bz2
Fixed GUID line in reporting file to use braces.
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth/Reporting.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/Reporting.cs b/src/DotNetOpenAuth/Reporting.cs
index 5dfbc13..45ee6db 100644
--- a/src/DotNetOpenAuth/Reporting.cs
+++ b/src/DotNetOpenAuth/Reporting.cs
@@ -398,7 +398,7 @@ namespace DotNetOpenAuth {
// Write a unique header to the file so the report collector can match duplicates.
if (fileCreated) {
- this.writer.WriteLine(Guid.NewGuid());
+ this.writer.WriteLine(Guid.NewGuid().ToString("B"));
}
}