summaryrefslogtreecommitdiff
path: root/lib/Loadbars
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2012-06-24 16:56:42 +0200
committerPaul Buetow <paul@buetow.org>2012-06-24 16:56:42 +0200
commitcfc4f47dff63d62d0c2255f7c1416205986b6242 (patch)
tree207dce2f3bb08029f0022da66c011fbce2dd6ece /lib/Loadbars
parent96ebe8611bc62c4d913efd5defd9e7178a02f6d5 (diff)
dont save "title" to loadbarsrc
Diffstat (limited to 'lib/Loadbars')
-rw-r--r--lib/Loadbars/Config.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Loadbars/Config.pm b/lib/Loadbars/Config.pm
index 9e1ad12..365d8c6 100644
--- a/lib/Loadbars/Config.pm
+++ b/lib/Loadbars/Config.pm
@@ -55,7 +55,7 @@ sub write () {
return undef;
};
- for ( keys %C ) {
+ for ( grep !/title/, keys %C ) {
print $conffile "$_=$C{$_}\n";
}