aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mvc/widgets/gtk/window.py2
-rw-r--r--setup-files/windows/setup.py16
2 files changed, 9 insertions, 9 deletions
diff --git a/mvc/widgets/gtk/window.py b/mvc/widgets/gtk/window.py
index 1f1cf04..3859a1a 100644
--- a/mvc/widgets/gtk/window.py
+++ b/mvc/widgets/gtk/window.py
@@ -675,7 +675,7 @@ class AboutDialog(Dialog):
def on_contrib_link_event(self, texttag, widget, event, iter_):
if event.type == gtk.gdk.BUTTON_PRESS:
- resources.open_url('https://notabug.org/Heckyel/LibreVideoConverter')
+ resources.open_url('https://notabug.org/heckyel/librevideoconverter')
type_map = {
0: gtk.MESSAGE_WARNING,
diff --git a/setup-files/windows/setup.py b/setup-files/windows/setup.py
index 663acd9..067e9d2 100644
--- a/setup-files/windows/setup.py
+++ b/setup-files/windows/setup.py
@@ -48,18 +48,18 @@ def ffmpeg_data_files():
def winsparkle_data_files():
winsparkle_dll = os.path.join(env_path, 'WinSparkle-0.3',
- "WinSparkle.dll")
+ "WinSparkle.dll")
return [
('', [winsparkle_dll]),
]
def gtk_theme_data_files():
engine_path = os.path.join(env_path, 'gtk2-themes-2009-09-07-win32_bin',
- 'lib', 'gtk-2.0', '2.10.0', 'engines', 'libclearlooks.dll')
+ 'lib', 'gtk-2.0', '2.10.0', 'engines', 'libclearlooks.dll')
gtkrc_path = os.path.join(resources_dir(), 'windows', 'gtkrc')
return [
- ('etc/gtk-2.0', [gtkrc_path]),
- ('lib/gtk-2.0/2.10.0/engines', [engine_path])
+ ('etc/gtk-2.0', [gtkrc_path]),
+ ('lib/gtk-2.0/2.10.0/engines', [engine_path])
]
def avconv_data_files():
@@ -123,14 +123,14 @@ class bdist_nsis(Command):
setup(
windows=[
{'script': 'mvc/windows/exe_main.py',
- 'dest_base': 'mvc',
- 'company_name': 'Participatory Culture Foundation',
+ 'dest_base': 'mvc',
+ 'company_name': 'Participatory Culture Foundation',
},
],
console=[
{'script': 'mvc/windows/exe_main.py',
- 'dest_base': 'mvcdebug',
- 'company_name': 'Participatory Culture Foundation',
+ 'dest_base': 'mvcdebug',
+ 'company_name': 'Participatory Culture Foundation',
},
],
data_files=data_files(),