summaryrefslogtreecommitdiffstats
path: root/mountconfig/fuser.py
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-21 18:33:18 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-21 18:33:18 -0600
commita47cb223414ce05fd91a0dc46540b4e7ba43f469 (patch)
tree81d88500eef00a0283b830e4df8b7d19ea195dd8 /mountconfig/fuser.py
parent0f1fbdf9e59d65896bafe2e11a837ca8cdbbf8cc (diff)
downloadtde-guidance-a47cb223414ce05fd91a0dc46540b4e7ba43f469.tar.gz
tde-guidance-a47cb223414ce05fd91a0dc46540b4e7ba43f469.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'mountconfig/fuser.py')
-rw-r--r--mountconfig/fuser.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/mountconfig/fuser.py b/mountconfig/fuser.py
index 9bc54c9..4a10ca9 100644
--- a/mountconfig/fuser.py
+++ b/mountconfig/fuser.py
@@ -17,7 +17,7 @@
"""
TODO:
- Fix running standalone:
- * KCmdLineArgs stuff.
+ * TDECmdLineArgs stuff.
"""
import sys
@@ -278,14 +278,14 @@ if standalone:
device = "/dev/hda1"
print 'Device is ', device
- cmd_args = KCmdLineArgs.init(sys.argv, "FUser",
+ cmd_args = TDECmdLineArgs.init(sys.argv, "FUser",
"A graphical frontend to fuser, but without using it :-)", "0.2")
# ----------------------------------------------------------------------------
- # FIXME: All the arg-parsing stuff does not work yet since I don't understand KCmdLineArgs.
+ # FIXME: All the arg-parsing stuff does not work yet since I don't understand TDECmdLineArgs.
options = [("device <device>", "Device to umount")]
- KCmdLineArgs.addCmdLineOptions(options)
- args = KCmdLineArgs.parsedArgs()
+ TDECmdLineArgs.addCmdLineOptions(options)
+ args = TDECmdLineArgs.parsedArgs()
# print args.count()
# ----------------------------------------------------------------------------