summary refs log tree commit diff stats
path: root/plugins/python/python.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-07-20 15:52:33 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-07-20 15:52:33 +0200
commit5290c7f392651acbf558709f487eb0bf651dd410 (patch)
treedbd0042d8da8b69f4eb1ba27d98a6223145ae795 /plugins/python/python.c
parent47d6222f1c66332a652fc4d49fc39b4b04905beb (diff)
Some more rebranding
Diffstat (limited to 'plugins/python/python.c')
-rw-r--r--plugins/python/python.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/python/python.c b/plugins/python/python.c
index 3824fd37..ebbf4f38 100644
--- a/plugins/python/python.c
+++ b/plugins/python/python.c
@@ -389,7 +389,7 @@ Util_Autoload()
 	char *sub_dir;
 	/* we need local filesystem encoding for chdir, opendir etc */
 
-	/* auto-load from ~/.xchat2/ or %APPDATA%\HexChat\ */
+	/* auto-load from ~/.config/hexchat/ or %APPDATA%\HexChat\ */
 	xdir = xchat_get_info(ph, "xchatdirfs");
 	Util_Autoload_from(xchat_get_info(ph, "xchatdirfs"));
 
@@ -400,7 +400,7 @@ Util_Autoload()
 	Util_Autoload_from(sub_dir);
 	free (sub_dir);
 
-#ifdef WIN32	/* also auto-load C:\Program Files\XChat\Plugins\*.py */
+#ifdef WIN32	/* also auto-load C:\Program Files\HexChat\Plugins\*.py */
 	Util_Autoload_from(HEXCHATLIBDIR"/plugins");
 #endif
 }
@@ -437,7 +437,7 @@ Util_Expand(char *filename)
 		return expanded;
 	g_free(expanded);
 
-	/* Check if ~/.xchat2/<filename> exists. */
+	/* Check if ~/.config/hexchat/<filename> exists. */
 	expanded = g_build_filename(xchat_get_info(ph, "xchatdir"),
 				    filename, NULL);
 	if (g_file_test(expanded, G_FILE_TEST_EXISTS))