[pitivi] MissingURIDialog: Don't forget to unquote the URI. Finishes fixing #580654



commit 876d8d92959e2903d8fd74e6f4ecd084b695601b
Author: Edward Hervey <bilboed bilboed com>
Date:   Tue May 19 20:45:02 2009 +0200

    MissingURIDialog: Don't forget to unquote the URI. Finishes fixing #580654
---
 pitivi/ui/mainwindow.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/pitivi/ui/mainwindow.py b/pitivi/ui/mainwindow.py
index 63bc497..1b0e9fe 100644
--- a/pitivi/ui/mainwindow.py
+++ b/pitivi/ui/mainwindow.py
@@ -703,7 +703,7 @@ class PitiviMainWindow(gtk.Window, Loggable):
 
         if response == gtk.RESPONSE_OK:
             self.log("User chose a URI to save project to")
-            new = chooser.get_uri()
+            new = unquote(chooser.get_uri())
             formatter.addMapping(uri, new)
         else:
             self.log("User didn't choose a URI to save project to")



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]